From ec09fb32408868075ea87aca6c216b8667ac6312 Mon Sep 17 00:00:00 2001 From: realtradam Date: Fri, 6 Jan 2023 20:52:17 -0500 Subject: init --- .gitignore | 1 + book.toml | 20 +++ src/.obsidian/app.json | 9 + src/.obsidian/appearance.json | 3 + src/.obsidian/community-plugins.json | 3 + src/.obsidian/core-plugins-migration.json | 29 ++++ src/.obsidian/core-plugins.json | 20 +++ src/.obsidian/hotkeys.json | 1 + .../plugins/obsidian-link-converter/data.json | 6 + .../plugins/obsidian-link-converter/main.js | 16 ++ .../plugins/obsidian-link-converter/manifest.json | 10 ++ .../plugins/obsidian-link-converter/styles.css | 4 + src/.obsidian/starred.json | 3 + src/.obsidian/workspace.json | 188 +++++++++++++++++++++ src/Assets/ice_is_nice_map.png | Bin 0 -> 4820212 bytes src/Companies&Groups/Arcane Brotherhood.md | 9 + src/Companies&Groups/Torg.md | 2 + src/Creatures/Chwinga.md | 3 + src/Creatures/Phaerimm.md | 3 + src/Creatures/Remorhaz.md | 3 + src/People/Auril the Frostmaiden.md | 3 + src/People/Avarice.md | 4 + src/People/Bremen/Charles.md | 7 + src/People/Bremen/Cynthia.md | 3 + src/People/Dougan's Hole/Dougan Dubrace(dead).md | 3 + src/People/Dougan's Hole/Edgra Durmoot.md | 3 + src/People/Dougan's Hole/Finn.md | 3 + src/People/Dougan's Hole/Hilda.md | 5 + src/People/Dougan's Hole/Kanan(dead).md | 3 + src/People/Dougan's Hole/Koran(dead).md | 6 + src/People/Dougan's Hole/Sil.md | 3 + src/People/Dougan's Hole/Snorp, Holgi, Zilbo.md | 3 + src/People/Durth Sunblight(dead).md | 3 + src/People/Dzaan.md | 7 + src/People/Easthaven/Captain Ahab.md | 3 + src/People/Easthaven/Danneth Waylen.md | 3 + src/People/Easthaven/Imdra Arlaggath.md | 3 + src/People/Easthaven/Maud Chiselbone(dead).md | 3 + src/People/Easthaven/Rinaldo.md | 3 + src/People/Easthaven/The 4 Fisherman.md | 3 + .../Doug the Veeg Marauder(dead).md | 3 + .../Friend the Ogre(dead).md | 3 + .../Gahg the Veeg Marauder.md | 3 + src/People/Garagi(dead).md | 3 + src/People/Good Mead/Al the Chemist.md | 3 + src/People/Good Mead/Fef.md | 3 + src/People/Good Mead/Hlin Trollbane.md | 4 + src/People/Good Mead/Joanna Gutenstein.md | 3 + src/People/Good Mead/Olivessa Untapoor.md | 4 + src/People/Good Mead/Peter Udgue.md | 3 + src/People/Good Mead/Shandar Forth.md | 5 + src/People/Good Mead/Soapy Dee.md | 3 + src/People/Kendrick Rielsbarrow.md | 6 + src/People/Klaska.md | 8 + src/People/Krintaas.md | 3 + src/People/Nass Lantomir.md | 4 + src/People/Nildar Sunblight.md | 3 + src/People/Player Characters/Glasha.md | 5 + .../Player Characters/Huitzilopchtli(Huwie).md | 5 + src/People/Player Characters/Jewo Flasted.md | 5 + src/People/Player Characters/Rickard Von Baer.md | 5 + src/People/Scython.md | 3 + src/People/Sephek Kaltro.md | 4 + src/People/Vellynne Harpell.md | 3 + src/People/Xardorok Sunblight.md | 5 + src/Places/Doug's Lair.md | 6 + src/Places/Kelvin's Cairn.md | 3 + src/Places/Lost Spire Of Metheril.md | 5 + src/Places/Ten Towns/Bremen.md | 3 + src/Places/Ten Towns/Bryn Shander.md | 3 + src/Places/Ten Towns/Council Of Speakers.md | 3 + src/Places/Ten Towns/Dougan's Hole.md | 8 + src/Places/Ten Towns/Easthaven/Easthaven.md | 23 +++ src/Places/Ten Towns/Easthaven/Lac Dinneshere.md | 3 + .../Easthaven/The Caverns Of Lac Dinneshere.md | 3 + src/Places/Ten Towns/Good Mead.md | 20 +++ src/Places/Xardorok's Fortress.md | 5 + src/Places/Ythryn.md | 3 + src/Quests/Completed/Dzaan's Treasure.md | 18 ++ src/Quests/Completed/Finding the Casks of Mead.md | 19 +++ src/Quests/Completed/The Missing Fisherman.md | 8 + src/Quests/Completed/The Winter Wolf Problem.md | 24 +++ src/Quests/Ten Town Murders.md | 8 + src/Quests/The White Lady's Treasure.md | 6 + src/Quests/Wizard to be Burned.md | 10 ++ src/Readme.md | 89 ++++++++++ src/Religions/Silvanus.md | 3 + src/Religions/Tempus.md | 3 + src/Religions/Thruun.md | 5 + src/SUMMARY.md | 91 ++++++++++ 90 files changed, 878 insertions(+) create mode 100644 .gitignore create mode 100644 book.toml create mode 100644 src/.obsidian/app.json create mode 100644 src/.obsidian/appearance.json create mode 100644 src/.obsidian/community-plugins.json create mode 100644 src/.obsidian/core-plugins-migration.json create mode 100644 src/.obsidian/core-plugins.json create mode 100644 src/.obsidian/hotkeys.json create mode 100644 src/.obsidian/plugins/obsidian-link-converter/data.json create mode 100644 src/.obsidian/plugins/obsidian-link-converter/main.js create mode 100644 src/.obsidian/plugins/obsidian-link-converter/manifest.json create mode 100644 src/.obsidian/plugins/obsidian-link-converter/styles.css create mode 100644 src/.obsidian/starred.json create mode 100644 src/.obsidian/workspace.json create mode 100644 src/Assets/ice_is_nice_map.png create mode 100644 src/Companies&Groups/Arcane Brotherhood.md create mode 100644 src/Companies&Groups/Torg.md create mode 100644 src/Creatures/Chwinga.md create mode 100644 src/Creatures/Phaerimm.md create mode 100644 src/Creatures/Remorhaz.md create mode 100644 src/People/Auril the Frostmaiden.md create mode 100644 src/People/Avarice.md create mode 100644 src/People/Bremen/Charles.md create mode 100644 src/People/Bremen/Cynthia.md create mode 100644 src/People/Dougan's Hole/Dougan Dubrace(dead).md create mode 100644 src/People/Dougan's Hole/Edgra Durmoot.md create mode 100644 src/People/Dougan's Hole/Finn.md create mode 100644 src/People/Dougan's Hole/Hilda.md create mode 100644 src/People/Dougan's Hole/Kanan(dead).md create mode 100644 src/People/Dougan's Hole/Koran(dead).md create mode 100644 src/People/Dougan's Hole/Sil.md create mode 100644 src/People/Dougan's Hole/Snorp, Holgi, Zilbo.md create mode 100644 src/People/Durth Sunblight(dead).md create mode 100644 src/People/Dzaan.md create mode 100644 src/People/Easthaven/Captain Ahab.md create mode 100644 src/People/Easthaven/Danneth Waylen.md create mode 100644 src/People/Easthaven/Imdra Arlaggath.md create mode 100644 src/People/Easthaven/Maud Chiselbone(dead).md create mode 100644 src/People/Easthaven/Rinaldo.md create mode 100644 src/People/Easthaven/The 4 Fisherman.md create mode 100644 src/People/Finding the Casks of Mead Quest/Doug the Veeg Marauder(dead).md create mode 100644 src/People/Finding the Casks of Mead Quest/Friend the Ogre(dead).md create mode 100644 src/People/Finding the Casks of Mead Quest/Gahg the Veeg Marauder.md create mode 100644 src/People/Garagi(dead).md create mode 100644 src/People/Good Mead/Al the Chemist.md create mode 100644 src/People/Good Mead/Fef.md create mode 100644 src/People/Good Mead/Hlin Trollbane.md create mode 100644 src/People/Good Mead/Joanna Gutenstein.md create mode 100644 src/People/Good Mead/Olivessa Untapoor.md create mode 100644 src/People/Good Mead/Peter Udgue.md create mode 100644 src/People/Good Mead/Shandar Forth.md create mode 100644 src/People/Good Mead/Soapy Dee.md create mode 100644 src/People/Kendrick Rielsbarrow.md create mode 100644 src/People/Klaska.md create mode 100644 src/People/Krintaas.md create mode 100644 src/People/Nass Lantomir.md create mode 100644 src/People/Nildar Sunblight.md create mode 100644 src/People/Player Characters/Glasha.md create mode 100644 src/People/Player Characters/Huitzilopchtli(Huwie).md create mode 100644 src/People/Player Characters/Jewo Flasted.md create mode 100644 src/People/Player Characters/Rickard Von Baer.md create mode 100644 src/People/Scython.md create mode 100644 src/People/Sephek Kaltro.md create mode 100644 src/People/Vellynne Harpell.md create mode 100644 src/People/Xardorok Sunblight.md create mode 100644 src/Places/Doug's Lair.md create mode 100644 src/Places/Kelvin's Cairn.md create mode 100644 src/Places/Lost Spire Of Metheril.md create mode 100644 src/Places/Ten Towns/Bremen.md create mode 100644 src/Places/Ten Towns/Bryn Shander.md create mode 100644 src/Places/Ten Towns/Council Of Speakers.md create mode 100644 src/Places/Ten Towns/Dougan's Hole.md create mode 100644 src/Places/Ten Towns/Easthaven/Easthaven.md create mode 100644 src/Places/Ten Towns/Easthaven/Lac Dinneshere.md create mode 100644 src/Places/Ten Towns/Easthaven/The Caverns Of Lac Dinneshere.md create mode 100644 src/Places/Ten Towns/Good Mead.md create mode 100644 src/Places/Xardorok's Fortress.md create mode 100644 src/Places/Ythryn.md create mode 100644 src/Quests/Completed/Dzaan's Treasure.md create mode 100644 src/Quests/Completed/Finding the Casks of Mead.md create mode 100644 src/Quests/Completed/The Missing Fisherman.md create mode 100644 src/Quests/Completed/The Winter Wolf Problem.md create mode 100644 src/Quests/Ten Town Murders.md create mode 100644 src/Quests/The White Lady's Treasure.md create mode 100644 src/Quests/Wizard to be Burned.md create mode 100644 src/Readme.md create mode 100644 src/Religions/Silvanus.md create mode 100644 src/Religions/Tempus.md create mode 100644 src/Religions/Thruun.md create mode 100644 src/SUMMARY.md diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..7585238 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +book diff --git a/book.toml b/book.toml new file mode 100644 index 0000000..9053333 --- /dev/null +++ b/book.toml @@ -0,0 +1,20 @@ +[book] +authors = ["realtradam"] +language = "en" +multilingual = false +src = "src" +title = "Ice Is Nice" + +[build] +create-missing = false + +[output.html.fold] +enable = true +level = 1 + +[output.html] +default-theme = "rust" +preferred-dark-theme = "rust" + +[output.html.search] +enable = true diff --git a/src/.obsidian/app.json b/src/.obsidian/app.json new file mode 100644 index 0000000..4c5e7dc --- /dev/null +++ b/src/.obsidian/app.json @@ -0,0 +1,9 @@ +{ + "spellcheck": true, + "spellcheckLanguages": [ + "en-CA" + ], + "useMarkdownLinks": true, + "alwaysUpdateLinks": true, + "newLinkFormat": "relative" +} \ No newline at end of file diff --git a/src/.obsidian/appearance.json b/src/.obsidian/appearance.json new file mode 100644 index 0000000..c8c365d --- /dev/null +++ b/src/.obsidian/appearance.json @@ -0,0 +1,3 @@ +{ + "accentColor": "" +} \ No newline at end of file diff --git a/src/.obsidian/community-plugins.json b/src/.obsidian/community-plugins.json new file mode 100644 index 0000000..a1610ca --- /dev/null +++ b/src/.obsidian/community-plugins.json @@ -0,0 +1,3 @@ +[ + "obsidian-link-converter" +] \ No newline at end of file diff --git a/src/.obsidian/core-plugins-migration.json b/src/.obsidian/core-plugins-migration.json new file mode 100644 index 0000000..3106ebd --- /dev/null +++ b/src/.obsidian/core-plugins-migration.json @@ -0,0 +1,29 @@ +{ + "file-explorer": true, + "global-search": true, + "switcher": true, + "graph": true, + "backlink": true, + "canvas": true, + "outgoing-link": true, + "tag-pane": true, + "page-preview": true, + "daily-notes": true, + "templates": true, + "note-composer": true, + "command-palette": true, + "slash-command": false, + "editor-status": true, + "starred": true, + "markdown-importer": false, + "zk-prefixer": false, + "random-note": false, + "outline": true, + "word-count": true, + "slides": false, + "audio-recorder": false, + "workspaces": false, + "file-recovery": true, + "publish": false, + "sync": false +} \ No newline at end of file diff --git a/src/.obsidian/core-plugins.json b/src/.obsidian/core-plugins.json new file mode 100644 index 0000000..086a8e4 --- /dev/null +++ b/src/.obsidian/core-plugins.json @@ -0,0 +1,20 @@ +[ + "file-explorer", + "global-search", + "switcher", + "graph", + "backlink", + "canvas", + "outgoing-link", + "tag-pane", + "page-preview", + "daily-notes", + "templates", + "note-composer", + "command-palette", + "editor-status", + "starred", + "outline", + "word-count", + "file-recovery" +] \ No newline at end of file diff --git a/src/.obsidian/hotkeys.json b/src/.obsidian/hotkeys.json new file mode 100644 index 0000000..9e26dfe --- /dev/null +++ b/src/.obsidian/hotkeys.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/src/.obsidian/plugins/obsidian-link-converter/data.json b/src/.obsidian/plugins/obsidian-link-converter/data.json new file mode 100644 index 0000000..11f0767 --- /dev/null +++ b/src/.obsidian/plugins/obsidian-link-converter/data.json @@ -0,0 +1,6 @@ +{ + "mySetting": "default", + "contextMenu": true, + "finalLinkFormat": "relative-path", + "keepMtime": false +} \ No newline at end of file diff --git a/src/.obsidian/plugins/obsidian-link-converter/main.js b/src/.obsidian/plugins/obsidian-link-converter/main.js new file mode 100644 index 0000000..4f35fba --- /dev/null +++ b/src/.obsidian/plugins/obsidian-link-converter/main.js @@ -0,0 +1,16 @@ +"use strict";var t=require("obsidian"); +/*! ***************************************************************************** +Copyright (c) Microsoft Corporation. + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH +REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY +AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, +INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM +LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR +OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THIS SOFTWARE. +***************************************************************************** */function e(t,e,i,n){return new(i||(i=Promise))((function(o,a){function l(t){try{r(n.next(t))}catch(t){a(t)}}function s(t){try{r(n.throw(t))}catch(t){a(t)}}function r(t){var e;t.done?o(t.value):(e=t.value,e instanceof i?e:new i((function(t){t(e)}))).then(l,s)}r((n=n.apply(t,e||[])).next())}))}const i={mySetting:"default",contextMenu:!0,finalLinkFormat:"not-change",keepMtime:!1};class n extends t.PluginSettingTab{constructor(t,e){super(t,e),this.plugin=e}display(){let{containerEl:e}=this;e.empty(),e.createEl("h2",{text:"Obsidian Link Converter"}),new t.Setting(e).setName("File Context Menu").setDesc("Turn this option off if you don't want single file commands to appear within the file context menu").addToggle((t=>{t.setValue(this.plugin.settings.contextMenu).onChange((t=>{this.plugin.settings.contextMenu=t,this.plugin.saveSettings(),t?this.plugin.app.workspace.on("file-menu",this.plugin.addFileMenuItems):this.plugin.app.workspace.off("file-menu",this.plugin.addFileMenuItems)}))})),new t.Setting(e).setName("Converted Link Format").setDesc("Select the preferred option for the final link format after the conversion. Plugin will use the preferrence where possible").addDropdown((t=>{t.addOption("not-change","Do not change").addOption("relative-path","Relative Path").addOption("absolute-path","Absolute Path").addOption("shortest-path","Shortest Path").setValue(this.plugin.settings.finalLinkFormat).onChange((t=>{this.plugin.settings.finalLinkFormat=t,this.plugin.saveSettings()}))})),new t.Setting(e).setName("Keep mTime (Last Modified Time)").setDesc("Turn on this option if you want plugin to keep the mtime of files same during the link conversion").addToggle((t=>t.setValue(this.plugin.settings.keepMtime).onChange((t=>{this.plugin.settings.keepMtime=t,this.plugin.saveSettings()}))));const i=e.createDiv("coffee");i.addClass("oz-coffee-div");i.createEl("a",{href:"https://ko-fi.com/L3L356V6Q"}).createEl("img",{attr:{src:"https://cdn.ko-fi.com/cdn/kofi2.png?v=3"}}).height=45}}const o=(t,i)=>e(void 0,void 0,void 0,(function*(){const e=[];let n=yield i.app.vault.read(t),o=n.match(/\[\[.*?\]\]/g);if(o){let i=/(?<=\[\[).*?(?=(\]|\|))/,n=/(?<=\|).*(?=]])/;for(let a of o){if(w(a)){let i=y(a),n=A(a);if(""!==i&&""!==n){let o={type:"wikiTransclusion",match:a,linkText:i,altOrBlockRef:n,sourceFilePath:t.path};e.push(o);continue}}let o=a.match(i);if(o){if(o[0].startsWith("http"))continue;let i=a.match(n),l={type:"wiki",match:a,linkText:o[0],altOrBlockRef:i?i[0]:"",sourceFilePath:t.path};e.push(l)}}}let a=n.match(/\[(^$|.*?)\]\((.*?)\)/g);if(a){let i=/(?<=\().*(?=\))/,n=/(?<=\[)(^$|.*?)(?=\])/;for(let o of a){if(M(o)){let i=y(o),n=A(o);if(""!==i&&""!==n){let a={type:"mdTransclusion",match:o,linkText:i,altOrBlockRef:n,sourceFilePath:t.path};e.push(a);continue}}let a=o.match(i);if(a){if(a[0].startsWith("http"))continue;let i=o.match(n),l={type:"markdown",match:o,linkText:a[0],altOrBlockRef:i?i[0]:"",sourceFilePath:t.path};e.push(l)}}}return e})),a=(i,n,o)=>e(void 0,void 0,void 0,(function*(){let e=yield n.app.vault.read(i),a="markdown"===o?yield c(e,i,n):yield h(e,i,n),l=n.settings.keepMtime?yield n.app.vault.adapter.stat(t.normalizePath(i.path)):{};yield n.app.vault.modify(i,a,l)})),l=(i,n)=>e(void 0,void 0,void 0,(function*(){let e=i.app.workspace.getActiveFile();"md"===e.extension?yield a(e,i,n):new t.Notice("Active File is not a Markdown File")})),s=(i,n,o)=>e(void 0,void 0,void 0,(function*(){let e=((e,i)=>{var n=[];return function e(i,o){var a=o.vault.getAbstractFileByPath(i);if(a instanceof t.TFolder&&a.children)for(let i of a.children)i instanceof t.TFile&&"md"===i.extension&&n.push(i),i instanceof t.TFolder&&e(i.path,o)}(e,i.app),n})(i.path,n),l=new t.Notice("Starting link conversion",0);try{let t=e.length,i=0;for(let s of e)i++,l.setMessage(`Converting the links in notes ${i}/${t}.`),d(n.app,s.path,"excalidraw-plugin")||d(n.app,s.path,"kanban-plugin")||(yield a(s,n,o))}catch(t){console.log(t)}finally{l.hide()}})),r=(i,n)=>e(void 0,void 0,void 0,(function*(){let e=n.app.workspace.getActiveViewOfType(t.MarkdownView);if(e){let o=e.editor,a=o.getSelection(),l=e.file;if(""!==a){let t;"markdown"===i?t=yield c(a,l,n):"wiki"===i&&(t=yield h(a,l,n)),o.replaceSelection(t)}else new t.Notice("You didn't select any text.")}else new t.Notice("There is no active leaf open.",3e3)})),C=(t,i)=>e(void 0,void 0,void 0,(function*(){s(t.app.vault.getRoot(),t,i)})),d=(t,e,i)=>{let n=t.metadataCache.getCache(e);return n.frontmatter&&n.frontmatter[i]},c=(t,i,n)=>e(void 0,void 0,void 0,(function*(){let e=t,a=yield o(i,n),l=a.filter((t=>"wiki"===t.type));for(let t of l){let o=p("markdown",t.linkText,t.altOrBlockRef,i,n);e=e.replace(t.match,o)}let s=a.filter((t=>"wikiTransclusion"===t.type));for(let t of s){let o=p("mdTransclusion",t.linkText,t.altOrBlockRef,i,n);e=e.replace(t.match,o)}return e})),h=(t,i,n)=>e(void 0,void 0,void 0,(function*(){let e=t,a=yield o(i,n),l=a.filter((t=>"markdown"===t.type));for(let t of l){let o=p("wiki",t.linkText,t.altOrBlockRef,i,n);e=e.replace(t.match,o)}let s=a.filter((t=>"mdTransclusion"===t.type));for(let t of s){let o=p("wikiTransclusion",t.linkText,t.altOrBlockRef,i,n);e=e.replace(t.match,o)}return e})),L=(t,e,i,n)=>{let o;if("absolute-path"===n)o=t.path;else if("relative-path"===n)o=function(t,e){function i(t){let e=0;for(;e=0&&""===t[i];i--);return e>i?[]:t.slice(e,i-e+1)}for(var n=i(t.split("/")),o=i(e.split("/")),a=Math.min(n.length,o.length),l=a,s=0;se.name===t.name)).length>1?t.path:t.name}return o.endsWith(".md")&&(o=o.replace(".md","")),o},p=(t,e,i,n,o)=>{let a,l=e,s=decodeURI(l),r=o.app.metadataCache.getFirstLinkpathDest(s,n.path);r&&"not-change"!==o.settings.finalLinkFormat&&(l=L(r,n,o,o.settings.finalLinkFormat));const C=r&&"md"===r.extension?`.${r.extension}`:"";if("wiki"===t)return a=""!==i&&i!==decodeURI(l)?r&&decodeURI(i)===r.basename?"":"|"+i:"",`[[${decodeURI(l)}${a}]]`;if("markdown"===t)return a=""!==i?i:r?r.basename:l,`[${a}](${encodeURI(l)}${C})`;if("wikiTransclusion"===t)return`[[${decodeURI(l)}#${decodeURI(i)}]]`;if("mdTransclusion"===t){let t=i;return i.startsWith("^")?(t=encodeURI(t.slice(1)),t=`^${t}`):t=encodeURI(t),`[](${encodeURI(l)}${C}#${t})`}return""};const u=/\[\[(.*?)#.*?\]\]/,k=/(?<=\[\[)(.*)(?=#)/,f=/(?<=#).*?(?=]])/,m=/\[.*?]\((.*?)#.*?\)/,g=/(?<=\]\()(.*)(?=#)/,v=/(?<=#).*?(?=\))/,w=t=>u.test(t),M=t=>m.test(t),y=t=>{let e=u.test(t),i=m.test(t);if(e||i){let i=t.match(e?k:g);if(i)return i[0]}return""},A=t=>{let e=u.test(t),i=m.test(t);if(e||i){let i=t.match(e?f:v);if(i)return i[0]}return""};class x extends t.Modal{constructor(t,e,i){super(t),this.message=e,this.callback=i}onOpen(){let{contentEl:t}=this,e=t.createEl("div");e.addClass("oz-modal-center"),e.innerHTML=`\n
\n

Link Converter Plugin

\n
\n

${this.message}

\n `,t.createEl("button",{text:"Continue"}).addEventListener("click",(()=>{this.callback(),this.close()}));const i=t.createEl("button",{text:"Cancel"});i.style.cssText="float: right;",i.addEventListener("click",(()=>this.close()))}}class F extends t.FuzzySuggestModal{constructor(t,e){super(t.app),this.plugin=t,this.finalFormat=e}getItemText(t){return t.path}getItems(){return function(e){let i=[],n=e.vault.getRoot();function o(e){for(let n of e.children)if(n instanceof t.TFolder){let t=n;i.push(t),t.children&&o(t)}}return i.push(n),o(n),i}(this.app)}onChooseItem(t,e){let i=`Are you sure you want to convert all \n ${"wiki"===this.finalFormat?"Markdown Links to Wikilinks":"Wikilinks to Markdown Links"} \n under ${t.name}?`;new x(this.app,i,(()=>s(t,this.plugin,this.finalFormat))).open()}}class T extends t.Plugin{constructor(){super(...arguments),this.addFileMenuItems=(i,n)=>{if(n instanceof t.TFile&&"md"===n.extension){if(i.addSeparator(),i.addItem((t=>{t.setTitle("Markdown Links to Wiki").setIcon("bracketIcon").onClick((()=>a(n,this,"wiki")))})),i.addItem((t=>{t.setTitle("WikiLinks to Markdown").setIcon("markdownIcon").onClick((()=>a(n,this,"markdown")))})),"not-change"!==this.settings.finalLinkFormat){let a=this.settings.finalLinkFormat;i.addItem((i=>{i.setTitle("All Links to "+("absolute-path"===a?"Absolute Path":"shortest-path"===a?"Shortest Path":"Relative Path")).setIcon("linkEditIcon").onClick((()=>((i,n,a)=>e(void 0,void 0,void 0,(function*(){let e=yield n.app.vault.read(i),l=yield o(i,n);for(let t of l){let o=decodeURI(t.linkText),l=n.app.metadataCache.getFirstLinkpathDest(o,t.sourceFilePath);l&&(o=L(l,i,n,a),e=e.replace(t.match,p(t.type,o,t.altOrBlockRef,i,n)))}let s=n.settings.keepMtime?yield n.app.vault.adapter.stat(t.normalizePath(i.path)):{};yield n.app.vault.modify(i,e,s)})))(n,this,a)))}))}i.addSeparator()}}}onload(){return e(this,void 0,void 0,(function*(){console.log("Link Converter Loading..."),t.addIcon("bracketIcon",''),t.addIcon("markdownIcon",''),t.addIcon("linkEditIcon",' '),yield this.loadSettings(),this.addSettingTab(new n(this.app,this)),this.addCommand({id:"convert-wikis-to-md-in-active-file",name:"Active File: Links to Markdown",callback:()=>{l(this,"markdown")}}),this.addCommand({id:"convert-md-to-wikis-in-active-file",name:"Active File: Links to Wiki",callback:()=>{l(this,"wiki")}}),this.addCommand({id:"convert-wikis-to-md-in-vault",name:"Vault: Links to Markdown",callback:()=>{new x(this.app,"Are you sure you want to convert all Wikilinks to Markdown Links?",(()=>C(this,"markdown"))).open()}}),this.addCommand({id:"convert-mdlinks-to-wiki-in-vault",name:"Vault: Links to Wiki",callback:()=>{new x(this.app,"Are you sure you want to convert all Markdown Links to Wikilinks?",(()=>C(this,"wiki"))).open()}}),this.addCommand({id:"convert-wikis-to-mdlink-under-folder",name:"Certain Folder: Links to Markdown",callback:()=>{new F(this,"markdown").open()}}),this.addCommand({id:"convert-mdlinks-to-wikis-under-folder",name:"Certain Folder: Links to Wiki",callback:()=>{new F(this,"wiki").open()}}),this.addCommand({id:"convert-wikis-to-mdlinks-within-selection",name:"Editor Selection: Links to Markdown",callback:()=>e(this,void 0,void 0,(function*(){return r("markdown",this)}))}),this.addCommand({id:"convert-mdlinks-to-wiki-within-selection",name:"Editor Selection: Links to Wiki",callback:()=>e(this,void 0,void 0,(function*(){return r("wiki",this)}))}),this.settings.contextMenu&&this.app.workspace.on("file-menu",this.addFileMenuItems)}))}onunload(){console.log("Link Converter Unloading..."),this.app.workspace.off("file-menu",this.addFileMenuItems)}loadSettings(){return e(this,void 0,void 0,(function*(){this.settings=Object.assign({},i,yield this.loadData())}))}saveSettings(){return e(this,void 0,void 0,(function*(){yield this.saveData(this.settings)}))}}module.exports=T; +//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibWFpbi5qcyIsInNvdXJjZXMiOlsibm9kZV9tb2R1bGVzL3RzbGliL3RzbGliLmVzNi5qcyIsInNyYy9zZXR0aW5ncy50cyIsInNyYy91dGlscy50cyIsInNyYy9jb252ZXJ0ZXIudHMiLCJzcmMvbW9kYWxzLnRzIiwic3JjL21haW4udHMiLCJzcmMvaWNvbnMudHMiXSwic291cmNlc0NvbnRlbnQiOm51bGwsIm5hbWVzIjpbIl9fYXdhaXRlciIsInRoaXNBcmciLCJfYXJndW1lbnRzIiwiUCIsImdlbmVyYXRvciIsIlByb21pc2UiLCJyZXNvbHZlIiwicmVqZWN0IiwiZnVsZmlsbGVkIiwidmFsdWUiLCJzdGVwIiwibmV4dCIsImUiLCJyZWplY3RlZCIsInJlc3VsdCIsImRvbmUiLCJ0aGVuIiwiYXBwbHkiLCJERUZBVUxUX1NFVFRJTkdTIiwibXlTZXR0aW5nIiwiY29udGV4dE1lbnUiLCJmaW5hbExpbmtGb3JtYXQiLCJrZWVwTXRpbWUiLCJMaW5rQ29udmVydGVyU2V0dGluZ3NUYWIiLCJQbHVnaW5TZXR0aW5nVGFiIiwiY29uc3RydWN0b3IiLCJhcHAiLCJwbHVnaW4iLCJzdXBlciIsInRoaXMiLCJkaXNwbGF5IiwiY29udGFpbmVyRWwiLCJlbXB0eSIsImNyZWF0ZUVsIiwidGV4dCIsIlNldHRpbmciLCJzZXROYW1lIiwic2V0RGVzYyIsImFkZFRvZ2dsZSIsInRvZ2dsZSIsInNldFZhbHVlIiwic2V0dGluZ3MiLCJvbkNoYW5nZSIsIm5ld1ZhbCIsInNhdmVTZXR0aW5ncyIsIndvcmtzcGFjZSIsIm9uIiwiYWRkRmlsZU1lbnVJdGVtcyIsIm9mZiIsImFkZERyb3Bkb3duIiwiZHJvcGRvd24iLCJhZGRPcHRpb24iLCJvcHRpb24iLCJjb2ZmZWVEaXYiLCJjcmVhdGVEaXYiLCJhZGRDbGFzcyIsImhyZWYiLCJhdHRyIiwic3JjIiwiaGVpZ2h0IiwiZ2V0QWxsTGlua01hdGNoZXNJbkZpbGUiLCJtZEZpbGUiLCJsaW5rTWF0Y2hlcyIsImZpbGVUZXh0IiwidmF1bHQiLCJyZWFkIiwid2lraU1hdGNoZXMiLCJtYXRjaCIsImZpbGVSZWdleCIsImFsdFJlZ2V4Iiwid2lraU1hdGNoIiwibWF0Y2hJc1dpa2lUcmFuc2NsdXNpb24iLCJmaWxlTmFtZSIsImdldFRyYW5zY2x1c2lvbkZpbGVOYW1lIiwiYmxvY2tSZWZNYXRjaCIsImdldFRyYW5zY2x1c2lvbkJsb2NrUmVmIiwibGlua01hdGNoIiwidHlwZSIsImxpbmtUZXh0IiwiYWx0T3JCbG9ja1JlZiIsInNvdXJjZUZpbGVQYXRoIiwicGF0aCIsInB1c2giLCJmaWxlTWF0Y2giLCJzdGFydHNXaXRoIiwiYWx0TWF0Y2giLCJtYXJrZG93bk1hdGNoZXMiLCJtYXJrZG93bk1hdGNoIiwibWF0Y2hJc01kVHJhbnNjbHVzaW9uIiwiY29udmVydExpbmtzQW5kU2F2ZUluU2luZ2xlRmlsZSIsImZpbmFsRm9ybWF0IiwibmV3RmlsZVRleHQiLCJjb252ZXJ0V2lraUxpbmtzVG9NYXJrZG93biIsImNvbnZlcnRNYXJrZG93bkxpbmtzVG9XaWtpTGlua3MiLCJmaWxlU3RhdCIsImFkYXB0ZXIiLCJzdGF0Iiwibm9ybWFsaXplUGF0aCIsIm1vZGlmeSIsImNvbnZlcnRMaW5rc0luQWN0aXZlRmlsZSIsImdldEFjdGl2ZUZpbGUiLCJleHRlbnNpb24iLCJOb3RpY2UiLCJjb252ZXJ0TGlua3NVbmRlckZvbGRlciIsImZvbGRlciIsIm1kRmlsZXMiLCJmaWxlc1VuZGVyUGF0aCIsInJlY3Vyc2l2ZUZ4IiwiZm9sZGVyT2JqIiwiZ2V0QWJzdHJhY3RGaWxlQnlQYXRoIiwiVEZvbGRlciIsImNoaWxkcmVuIiwiY2hpbGQiLCJURmlsZSIsImdldEZpbGVzVW5kZXJQYXRoIiwibm90aWNlIiwidG90YWxDb3VudCIsImxlbmd0aCIsImNvdW50ZXIiLCJzZXRNZXNzYWdlIiwiaGFzRnJvbnRtYXR0ZXIiLCJlcnIiLCJjb25zb2xlIiwibG9nIiwiaGlkZSIsImNvbnZlcnRMaW5rc1dpdGhpblNlbGVjdGlvbiIsImFjdGl2ZUxlYWYiLCJnZXRBY3RpdmVWaWV3T2ZUeXBlIiwiTWFya2Rvd25WaWV3IiwiZWRpdG9yIiwic2VsZWN0aW9uIiwiZ2V0U2VsZWN0aW9uIiwic291cmNlRmlsZSIsImZpbGUiLCJuZXdUZXh0IiwicmVwbGFjZVNlbGVjdGlvbiIsImNvbnZlcnRMaW5rc0luVmF1bHQiLCJnZXRSb290IiwiZmlsZVBhdGgiLCJrZXlUb0NoZWNrIiwibWV0YUNhY2hlIiwibWV0YWRhdGFDYWNoZSIsImdldENhY2hlIiwiZnJvbnRtYXR0ZXIiLCJtZCIsIm5ld01kVGV4dCIsImZpbHRlciIsIm1kTGluayIsImNyZWF0ZUxpbmsiLCJyZXBsYWNlIiwid2lraVRyYW5zY2x1c2lvbnMiLCJ3aWtpVHJhbnNjbHVzaW9uIiwid2lraVRyYW5zY2x1c2lvbkxpbmsiLCJ3aWtpTGluayIsIm1kVHJhbnNjbHVzaW9ucyIsIm1kVHJhbnNjbHVzaW9uIiwiZ2V0RmlsZUxpbmtJbkZvcm1hdCIsImZpbGVMaW5rIiwibGlua2VkRmlsZVBhdGgiLCJ0cmltIiwiYXJyIiwic3RhcnQiLCJlbmQiLCJzbGljZSIsImZyb21QYXJ0cyIsInNwbGl0IiwidG9QYXJ0cyIsIk1hdGgiLCJtaW4iLCJzYW1lUGFydHNMZW5ndGgiLCJpIiwib3V0cHV0UGFydHMiLCJjb25jYXQiLCJqb2luIiwiZ2V0UmVsYXRpdmVMaW5rIiwiZ2V0RmlsZXMiLCJmIiwibmFtZSIsImVuZHNXaXRoIiwiZGVzdCIsIm9yaWdpbmFsTGluayIsImFsdFRleHQiLCJmaW5hbExpbmsiLCJkZWNvZGVVUkkiLCJnZXRGaXJzdExpbmtwYXRoRGVzdCIsImZpbGVFeHRlbnNpb24iLCJiYXNlbmFtZSIsImVuY29kZVVSSSIsImVuY29kZWRCbG9ja1JlZiIsIndpa2lUcmFuc2NsdXNpb25SZWdleCIsIndpa2lUcmFuc2NsdXNpb25GaWxlTmFtZVJlZ2V4Iiwid2lraVRyYW5zY2x1c2lvbkJsb2NrUmVmIiwibWRUcmFuc2NsdXNpb25SZWdleCIsIm1kVHJhbnNjbHVzaW9uRmlsZU5hbWVSZWdleCIsIm1kVHJhbnNjbHVzaW9uQmxvY2tSZWYiLCJ0ZXN0IiwiaXNXaWtpIiwiaXNNZCIsImZpbGVOYW1lTWF0Y2giLCJDb25maXJtYXRpb25Nb2RhbCIsIk1vZGFsIiwibWVzc2FnZSIsImNhbGxiYWNrIiwib25PcGVuIiwiY29udGVudEVsIiwibWFpbkRpdiIsImlubmVySFRNTCIsImFkZEV2ZW50TGlzdGVuZXIiLCJjbG9zZSIsImNhbmNlbEJ1dHRvbiIsInN0eWxlIiwiY3NzVGV4dCIsIkZvbGRlclN1Z2dlc3Rpb25Nb2RhbCIsIkZ1enp5U3VnZ2VzdE1vZGFsIiwiZ2V0SXRlbVRleHQiLCJpdGVtIiwiZ2V0SXRlbXMiLCJmb2xkZXJzIiwicm9vdEZvbGRlciIsImNoaWxkRm9sZGVyIiwiZ2V0QWxsRm9sZGVyc0luVmF1bHQiLCJvbkNob29zZUl0ZW0iLCJldnQiLCJpbmZvVGV4dCIsIkNvbnZlcnRlci5jb252ZXJ0TGlua3NVbmRlckZvbGRlciIsIm9wZW4iLCJMaW5rQ29udmVydGVyUGx1Z2luIiwiUGx1Z2luIiwibWVudSIsImFkZFNlcGFyYXRvciIsImFkZEl0ZW0iLCJzZXRUaXRsZSIsInNldEljb24iLCJvbkNsaWNrIiwiQ29udmVydGVyLmNvbnZlcnRMaW5rc0FuZFNhdmVJblNpbmdsZUZpbGUiLCJDb252ZXJ0ZXIuY29udmVydExpbmtzSW5GaWxlVG9QcmVmZXJyZWRGb3JtYXQiLCJvbmxvYWQiLCJhZGRJY29uIiwibG9hZFNldHRpbmdzIiwiYWRkU2V0dGluZ1RhYiIsImFkZENvbW1hbmQiLCJpZCIsIkNvbnZlcnRlci5jb252ZXJ0TGlua3NJbkFjdGl2ZUZpbGUiLCJDb252ZXJ0ZXIuY29udmVydExpbmtzSW5WYXVsdCIsIkNvbnZlcnRlci5jb252ZXJ0TGlua3NXaXRoaW5TZWxlY3Rpb24iLCJvbnVubG9hZCIsIk9iamVjdCIsImFzc2lnbiIsImxvYWREYXRhIiwic2F2ZURhdGEiXSwibWFwcGluZ3MiOiI7Ozs7Ozs7Ozs7Ozs7O2dGQXFFTyxTQUFTQSxFQUFVQyxFQUFTQyxFQUFZQyxF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 diff --git a/src/.obsidian/plugins/obsidian-link-converter/manifest.json b/src/.obsidian/plugins/obsidian-link-converter/manifest.json new file mode 100644 index 0000000..43305fe --- /dev/null +++ b/src/.obsidian/plugins/obsidian-link-converter/manifest.json @@ -0,0 +1,10 @@ +{ + "id": "obsidian-link-converter", + "name": "Obsidian Link Converter", + "version": "0.1.4", + "minAppVersion": "0.9.12", + "description": "Scan all your links in the vault and convert them to your desired format.", + "author": "Ozan Tellioglu", + "authorUrl": "https://ozan.pl", + "isDesktopOnly": false +} diff --git a/src/.obsidian/plugins/obsidian-link-converter/styles.css b/src/.obsidian/plugins/obsidian-link-converter/styles.css new file mode 100644 index 0000000..bbd6b7f --- /dev/null +++ b/src/.obsidian/plugins/obsidian-link-converter/styles.css @@ -0,0 +1,4 @@ +.oz-coffee-div { + text-align: center; + margin-top: 20px; +} diff --git a/src/.obsidian/starred.json b/src/.obsidian/starred.json new file mode 100644 index 0000000..fc69ce2 --- /dev/null +++ b/src/.obsidian/starred.json @@ -0,0 +1,3 @@ +{ + "items": [] +} \ No newline at end of file diff --git a/src/.obsidian/workspace.json b/src/.obsidian/workspace.json new file mode 100644 index 0000000..0e8a77c --- /dev/null +++ b/src/.obsidian/workspace.json @@ -0,0 +1,188 @@ +{ + "main": { + "id": "8fac06800f9d553c", + "type": "split", + "children": [ + { + "id": "49e748382efba7ad", + "type": "tabs", + "children": [ + { + "id": "a44d378b225c85ac", + "type": "leaf", + "state": { + "type": "markdown", + "state": { + "file": "Readme.md", + "mode": "source", + "backlinks": true, + "source": false + } + } + }, + { + "id": "6eb7bc109200c4c7", + "type": "leaf", + "state": { + "type": "markdown", + "state": { + "file": "Readme.md", + "mode": "source", + "source": false + } + } + }, + { + "id": "485d25e6e0e9b73d", + "type": "leaf", + "state": { + "type": "markdown", + "state": { + "file": "SUMMARY.md", + "mode": "source", + "source": false + } + } + } + ], + "currentTab": 2 + } + ], + "direction": "vertical" + }, + "left": { + "id": "2b16f366e95fa198", + "type": "split", + "children": [ + { + "id": "0c93b2a330f251a4", + "type": "tabs", + "children": [ + { + "id": "09ed7c75f807e69a", + "type": "leaf", + "state": { + "type": "file-explorer", + "state": { + "sortOrder": "alphabetical" + } + } + }, + { + "id": "f41ed32cdcf3a05d", + "type": "leaf", + "state": { + "type": "search", + "state": { + "query": "", + "matchingCase": false, + "explainSearch": false, + "collapseAll": false, + "extraContext": false, + "sortOrder": "alphabetical" + } + } + }, + { + "id": "e393cee62052c5be", + "type": "leaf", + "state": { + "type": "starred", + "state": {} + } + } + ] + } + ], + "direction": "horizontal", + "width": 300 + }, + "right": { + "id": "964b30dec7e0419f", + "type": "split", + "children": [ + { + "id": "6b60f2b8cdf5f07c", + "type": "tabs", + "children": [ + { + "id": "3dc5bb5ebbb1f420", + "type": "leaf", + "state": { + "type": "backlink", + "state": { + "file": "SUMMARY.md", + "collapseAll": false, + "extraContext": false, + "sortOrder": "alphabetical", + "showSearch": false, + "searchQuery": "", + "backlinkCollapsed": false, + "unlinkedCollapsed": true + } + } + }, + { + "id": "c7976369739cd052", + "type": "leaf", + "state": { + "type": "outgoing-link", + "state": { + "file": "SUMMARY.md", + "linksCollapsed": false, + "unlinkedCollapsed": true + } + } + }, + { + "id": "3a335e1f3a9f39cd", + "type": "leaf", + "state": { + "type": "tag", + "state": { + "sortOrder": "frequency", + "useHierarchy": true + } + } + }, + { + "id": "20713a3357a95418", + "type": "leaf", + "state": { + "type": "outline", + "state": { + "file": "SUMMARY.md" + } + } + } + ] + } + ], + "direction": "horizontal", + "width": 300, + "collapsed": true + }, + "left-ribbon": { + "hiddenItems": { + "switcher:Open quick switcher": false, + "graph:Open graph view": false, + "canvas:Create new canvas": false, + "daily-notes:Open today's daily note": false, + "templates:Insert template": false, + "command-palette:Open command palette": false + } + }, + "active": "485d25e6e0e9b73d", + "lastOpenFiles": [ + "Readme.md", + "Religions/Thruun.md", + "Religions/Tempus.md", + "Religions/Silvanus.md", + "Quests/Wizard to be Burned.md", + "Quests/The White Lady's Treasure.md", + "Quests/Ten Town Murders.md", + "Quests/Completed/The Winter Wolf Problem.md", + "Quests/Completed/The Missing Fisherman.md", + "Quests/Completed/Finding the Casks of Mead.md" + ] +} \ No newline at end of file diff --git a/src/Assets/ice_is_nice_map.png b/src/Assets/ice_is_nice_map.png new file mode 100644 index 0000000..b5531ff Binary files /dev/null and b/src/Assets/ice_is_nice_map.png differ diff --git a/src/Companies&Groups/Arcane Brotherhood.md b/src/Companies&Groups/Arcane Brotherhood.md new file mode 100644 index 0000000..c074eff --- /dev/null +++ b/src/Companies&Groups/Arcane Brotherhood.md @@ -0,0 +1,9 @@ +# Arcane Brotherhood +- [Avarice](../People/Avarice.md) + - Weakness: paranoia, delights in destruction + - Has 2 gargoyles. +- [Nass Lantomir](../People/Nass%20Lantomir.md) + - Weakness: always looking ahead, never behind + - Is a mind reader. +- [Vellynne Harpell](../People/Vellynne%20Harpell.md) + - As cold and caring as the corpses she animates. \ No newline at end of file diff --git a/src/Companies&Groups/Torg.md b/src/Companies&Groups/Torg.md new file mode 100644 index 0000000..37d4e37 --- /dev/null +++ b/src/Companies&Groups/Torg.md @@ -0,0 +1,2 @@ +# Torg +Company that [Sephek Kaltro](People/Sephek%20Kaltro.md) works for. \ No newline at end of file diff --git a/src/Creatures/Chwinga.md b/src/Creatures/Chwinga.md new file mode 100644 index 0000000..68d0c35 --- /dev/null +++ b/src/Creatures/Chwinga.md @@ -0,0 +1,3 @@ +# Chwinga +- Trickster-like +- The Chwinga statue found in [The Winter Wolf Problem](../Quests/Completed/The%20Winter%20Wolf%20Problem.md) was supposedly a live Chwinga that once killed became the stone statue according to the kobolds. \ No newline at end of file diff --git a/src/Creatures/Phaerimm.md b/src/Creatures/Phaerimm.md new file mode 100644 index 0000000..b414f3d --- /dev/null +++ b/src/Creatures/Phaerimm.md @@ -0,0 +1,3 @@ +# Phaerimm + +Telepathic, funnel-shaped monsters of malevolent intellect that lurk in the Underdark-and includes disturbing sketches of them. \ No newline at end of file diff --git a/src/Creatures/Remorhaz.md b/src/Creatures/Remorhaz.md new file mode 100644 index 0000000..b5e5f3c --- /dev/null +++ b/src/Creatures/Remorhaz.md @@ -0,0 +1,3 @@ +# Remorhaz + +A massive dune-like sand worm type thing. Generates a rare resources known as thrym which is used for creating potions of cold resistance. \ No newline at end of file diff --git a/src/People/Auril the Frostmaiden.md b/src/People/Auril the Frostmaiden.md new file mode 100644 index 0000000..50f1039 --- /dev/null +++ b/src/People/Auril the Frostmaiden.md @@ -0,0 +1,3 @@ +# Auril the Frostmaiden + +Is the most likely cause for the 2 year long permanent winter. Supposedly some towns from the ten towns perform sacrifices to her. \ No newline at end of file diff --git a/src/People/Avarice.md b/src/People/Avarice.md new file mode 100644 index 0000000..d984ac1 --- /dev/null +++ b/src/People/Avarice.md @@ -0,0 +1,4 @@ +# Avarice + +- Weakness: paranoia, delights in destruction +- Has 2 gargoyles. \ No newline at end of file diff --git a/src/People/Bremen/Charles.md b/src/People/Bremen/Charles.md new file mode 100644 index 0000000..cbbbbba --- /dev/null +++ b/src/People/Bremen/Charles.md @@ -0,0 +1,7 @@ +# Charles + +Headless man, husband of [Cynthia](Cynthia.md). Had a letter that had this written: + +The letter wrote how she wishes to see her husband Charles once more, and how she understands that he is trying to find food to feed their family with, but it is difficult for the kids to grow up without a father, and hopes he reaches back home to Bremen safely and swiftly, as she misses him dearly. + +We later found his head around a yeti that we fought and defeated. diff --git a/src/People/Bremen/Cynthia.md b/src/People/Bremen/Cynthia.md new file mode 100644 index 0000000..23c2a32 --- /dev/null +++ b/src/People/Bremen/Cynthia.md @@ -0,0 +1,3 @@ +# Cynthia + +Wife of [[Charles]]. \ No newline at end of file diff --git a/src/People/Dougan's Hole/Dougan Dubrace(dead).md b/src/People/Dougan's Hole/Dougan Dubrace(dead).md new file mode 100644 index 0000000..54dd617 --- /dev/null +++ b/src/People/Dougan's Hole/Dougan Dubrace(dead).md @@ -0,0 +1,3 @@ +# Dougan Dubrace(dead) + +Chondathan that founded [Dougan's Hole](../../Places/Ten%20Towns/Dougan's%20Hole.md). Most likely diseased. \ No newline at end of file diff --git a/src/People/Dougan's Hole/Edgra Durmoot.md b/src/People/Dougan's Hole/Edgra Durmoot.md new file mode 100644 index 0000000..d27052e --- /dev/null +++ b/src/People/Dougan's Hole/Edgra Durmoot.md @@ -0,0 +1,3 @@ +# Edgra Dirmoot + +Speaker of [Dougan's Hole](../../Places/Ten%20Towns/Dougan's%20Hole.md). \ No newline at end of file diff --git a/src/People/Dougan's Hole/Finn.md b/src/People/Dougan's Hole/Finn.md new file mode 100644 index 0000000..3c6dc68 --- /dev/null +++ b/src/People/Dougan's Hole/Finn.md @@ -0,0 +1,3 @@ +# Finn + +Was found captured in a cage by the wolves, from the quest [The Winter Wolf Problem](../../Quests/Completed/The%20Winter%20Wolf%20Problem.md). \ No newline at end of file diff --git a/src/People/Dougan's Hole/Hilda.md b/src/People/Dougan's Hole/Hilda.md new file mode 100644 index 0000000..68396b5 --- /dev/null +++ b/src/People/Dougan's Hole/Hilda.md @@ -0,0 +1,5 @@ +# Hilda + +Had her kids kidnapped by the wolves from [The Winter Wolf Problem](../../Quests/Completed/The%20Winter%20Wolf%20Problem.md). Kids were returned safely and she was very happy about this. + +She married her older brother, which passed away a few years ago. Gave us magic winter boots as a reward. \ No newline at end of file diff --git a/src/People/Dougan's Hole/Kanan(dead).md b/src/People/Dougan's Hole/Kanan(dead).md new file mode 100644 index 0000000..e245b4e --- /dev/null +++ b/src/People/Dougan's Hole/Kanan(dead).md @@ -0,0 +1,3 @@ +# Kanan(dead) + +Intelligent wolf that kidnapped kids for money. Was defeated in [The Winter Wolf Problem](../../Quests/Completed/The%20Winter%20Wolf%20Problem.md) by being tricked into a cage before shortly being killed. \ No newline at end of file diff --git a/src/People/Dougan's Hole/Koran(dead).md b/src/People/Dougan's Hole/Koran(dead).md new file mode 100644 index 0000000..9e2c8ac --- /dev/null +++ b/src/People/Dougan's Hole/Koran(dead).md @@ -0,0 +1,6 @@ +# Koran(dead) + +First of the 2 wolves from [The Winter Wolf Problem](../../Quests/Completed/The%20Winter%20Wolf%20Problem.md). Lied about being injured to try and trick us is but we saw through it. +Claims his master was a mean frost giant called [Garagi(dead)](../Garagi(dead).md). + +Was defeated shorty after, we skinned him for his pelt. \ No newline at end of file diff --git a/src/People/Dougan's Hole/Sil.md b/src/People/Dougan's Hole/Sil.md new file mode 100644 index 0000000..9cb08e7 --- /dev/null +++ b/src/People/Dougan's Hole/Sil.md @@ -0,0 +1,3 @@ +# Sil + +Was found captured in a cage by the wolves, from the quest [The Winter Wolf Problem](../../Quests/Completed/The%20Winter%20Wolf%20Problem.md). \ No newline at end of file diff --git a/src/People/Dougan's Hole/Snorp, Holgi, Zilbo.md b/src/People/Dougan's Hole/Snorp, Holgi, Zilbo.md new file mode 100644 index 0000000..60f742c --- /dev/null +++ b/src/People/Dougan's Hole/Snorp, Holgi, Zilbo.md @@ -0,0 +1,3 @@ +# Snorp, Holgi, Zilbo + +Found in the wolf hideout in [The Winter Wolf Problem](../../Quests/Completed/The%20Winter%20Wolf%20Problem.md). Payed handsomely to help us. Claim the [Chwinga](../../Creatures/Chwinga.md) startled them, so they killed it and it turned to stone. \ No newline at end of file diff --git a/src/People/Durth Sunblight(dead).md b/src/People/Durth Sunblight(dead).md new file mode 100644 index 0000000..5c4e30b --- /dev/null +++ b/src/People/Durth Sunblight(dead).md @@ -0,0 +1,3 @@ +# Durth Sunblight(dead) + +Is the son of [Xardorok Sunblight](Xardorok%20Sunblight.md). diff --git a/src/People/Dzaan.md b/src/People/Dzaan.md new file mode 100644 index 0000000..eb0c54f --- /dev/null +++ b/src/People/Dzaan.md @@ -0,0 +1,7 @@ +# Dzaan + +Was found guilty of murdering some mercenaries, this was burned at the stake in [Easthaven](../Places/Ten%20Towns/Easthaven/Easthaven.md). He supposedly found some treasure. + +We found his simulacrum which we later helped resurrect into the real Dzaan. + +Has an assistant called [Krintaas](Krintaas.md). \ No newline at end of file diff --git a/src/People/Easthaven/Captain Ahab.md b/src/People/Easthaven/Captain Ahab.md new file mode 100644 index 0000000..f967cfe --- /dev/null +++ b/src/People/Easthaven/Captain Ahab.md @@ -0,0 +1,3 @@ +# Captain Ahab + +Is the main fisherman guy of the pier from [Easthaven](../../Places/Ten%20Towns/Easthaven/Easthaven.md). Helped us find [The Missing Fisherman](../../Quests/Completed/The%20Missing%20Fisherman.md). \ No newline at end of file diff --git a/src/People/Easthaven/Danneth Waylen.md b/src/People/Easthaven/Danneth Waylen.md new file mode 100644 index 0000000..c7a9e4b --- /dev/null +++ b/src/People/Easthaven/Danneth Waylen.md @@ -0,0 +1,3 @@ +# Danneth Waylen + +Speaker of the town from [Easthaven](../../Places/Ten%20Towns/Easthaven/Easthaven.md). Doesn't trust us, asked us to explore more of the town first. \ No newline at end of file diff --git a/src/People/Easthaven/Imdra Arlaggath.md b/src/People/Easthaven/Imdra Arlaggath.md new file mode 100644 index 0000000..41c9af9 --- /dev/null +++ b/src/People/Easthaven/Imdra Arlaggath.md @@ -0,0 +1,3 @@ +# Imdra Arlaggath + +Captain of the [Easthaven](../../Places/Ten%20Towns/Easthaven/Easthaven.md) militia. \ No newline at end of file diff --git a/src/People/Easthaven/Maud Chiselbone(dead).md b/src/People/Easthaven/Maud Chiselbone(dead).md new file mode 100644 index 0000000..e9c5468 --- /dev/null +++ b/src/People/Easthaven/Maud Chiselbone(dead).md @@ -0,0 +1,3 @@ +# Maud Chiselbone(dead) + +Witch that was the one that killed the [The 4 Fisherman](The%204%20Fisherman.md). Was defeated after we denied her offer to show us the treasure in return for her life. \ No newline at end of file diff --git a/src/People/Easthaven/Rinaldo.md b/src/People/Easthaven/Rinaldo.md new file mode 100644 index 0000000..efa0703 --- /dev/null +++ b/src/People/Easthaven/Rinaldo.md @@ -0,0 +1,3 @@ +# Rinaldo + +Bard that sings at the [](../../Places/Ten%20Towns/Easthaven/Easthaven.md#White%2520Lady%2520Inn). Gave us the [The White Lady's Treasure](../../Quests/The%20White%20Lady's%20Treasure.md) quest. \ No newline at end of file diff --git a/src/People/Easthaven/The 4 Fisherman.md b/src/People/Easthaven/The 4 Fisherman.md new file mode 100644 index 0000000..4d335ad --- /dev/null +++ b/src/People/Easthaven/The 4 Fisherman.md @@ -0,0 +1,3 @@ +# The 4 Fisherman + +Sasha, Derek, Jessica, Jim. The 4 missing fisherman from [The Missing Fisherman](../../Quests/Completed/The%20Missing%20Fisherman.md) quest. \ No newline at end of file diff --git a/src/People/Finding the Casks of Mead Quest/Doug the Veeg Marauder(dead).md b/src/People/Finding the Casks of Mead Quest/Doug the Veeg Marauder(dead).md new file mode 100644 index 0000000..e39587d --- /dev/null +++ b/src/People/Finding the Casks of Mead Quest/Doug the Veeg Marauder(dead).md @@ -0,0 +1,3 @@ +# Doug the Veeg Marauder(dead) + +Stole the mead ([Finding the Casks of Mead](../../Quests/Completed/Finding%20the%20Casks%20of%20Mead.md)) in order to impress [Gahg the Veeg Marauder](Gahg%20the%20Veeg%20Marauder.md). \ No newline at end of file diff --git a/src/People/Finding the Casks of Mead Quest/Friend the Ogre(dead).md b/src/People/Finding the Casks of Mead Quest/Friend the Ogre(dead).md new file mode 100644 index 0000000..3f4c778 --- /dev/null +++ b/src/People/Finding the Casks of Mead Quest/Friend the Ogre(dead).md @@ -0,0 +1,3 @@ +# Friend the Ogre(dead) + +Was a friend of [Doug the Veeg Marauder(dead)](Doug%20the%20Veeg%20Marauder(dead).md). \ No newline at end of file diff --git a/src/People/Finding the Casks of Mead Quest/Gahg the Veeg Marauder.md b/src/People/Finding the Casks of Mead Quest/Gahg the Veeg Marauder.md new file mode 100644 index 0000000..ca10ed4 --- /dev/null +++ b/src/People/Finding the Casks of Mead Quest/Gahg the Veeg Marauder.md @@ -0,0 +1,3 @@ +# Gahg the Veeg Marauder + +Is the girlfriend of [Doug the Veeg Marauder(dead)](Doug%20the%20Veeg%20Marauder(dead).md) \ No newline at end of file diff --git a/src/People/Garagi(dead).md b/src/People/Garagi(dead).md new file mode 100644 index 0000000..0079adf --- /dev/null +++ b/src/People/Garagi(dead).md @@ -0,0 +1,3 @@ +# Garagi(dead) + +Frost giant that died at some point in the past. Master of the wolves from [The Winter Wolf Problem](../Quests/Completed/The%20Winter%20Wolf%20Problem.md). \ No newline at end of file diff --git a/src/People/Good Mead/Al the Chemist.md b/src/People/Good Mead/Al the Chemist.md new file mode 100644 index 0000000..2bc94b4 --- /dev/null +++ b/src/People/Good Mead/Al the Chemist.md @@ -0,0 +1,3 @@ +# Al the Chemist + +Chemist of [Good Mead](../../Places/Ten%20Towns/Good%20Mead.md). Sold thrym(from [[../../Creatures/Remorhaz]]) in return for a potion, which was immediately sold back. \ No newline at end of file diff --git a/src/People/Good Mead/Fef.md b/src/People/Good Mead/Fef.md new file mode 100644 index 0000000..9806308 --- /dev/null +++ b/src/People/Good Mead/Fef.md @@ -0,0 +1,3 @@ +# Fef + +- Met him in the woods when we searched for the missing militia for [Finding the Casks of Mead](../../Quests/Completed/Finding%20the%20Casks%20of%20Mead.md). \ No newline at end of file diff --git a/src/People/Good Mead/Hlin Trollbane.md b/src/People/Good Mead/Hlin Trollbane.md new file mode 100644 index 0000000..2091baf --- /dev/null +++ b/src/People/Good Mead/Hlin Trollbane.md @@ -0,0 +1,4 @@ +# Hlin Trollbane + +- Met in the tavern of [Good Mead](../../Places/Ten%20Towns/Good%20Mead.md) +- Told us more about the [Ten Town Murders](../../Quests/Ten%20Town%20Murders.md). \ No newline at end of file diff --git a/src/People/Good Mead/Joanna Gutenstein.md b/src/People/Good Mead/Joanna Gutenstein.md new file mode 100644 index 0000000..838ebb5 --- /dev/null +++ b/src/People/Good Mead/Joanna Gutenstein.md @@ -0,0 +1,3 @@ +# Joanna Gutenstein + +Printing press lady of [Good Mead](../../Places/Ten%20Towns/Good%20Mead.md). Printed [Jewo Flasted](../Player%20Characters/Jewo%20Flasted.md) posters for us. \ No newline at end of file diff --git a/src/People/Good Mead/Olivessa Untapoor.md b/src/People/Good Mead/Olivessa Untapoor.md new file mode 100644 index 0000000..661fab8 --- /dev/null +++ b/src/People/Good Mead/Olivessa Untapoor.md @@ -0,0 +1,4 @@ +# Olivessa Untapoor + +- Timid and middle aged. Family has been here since the founding of [Good Mead](../../Places/Ten%20Towns/Good%20Mead.md). +- Was running for counsellor but quit when she asked us to take her place. \ No newline at end of file diff --git a/src/People/Good Mead/Peter Udgue.md b/src/People/Good Mead/Peter Udgue.md new file mode 100644 index 0000000..1571650 --- /dev/null +++ b/src/People/Good Mead/Peter Udgue.md @@ -0,0 +1,3 @@ +# Peter Udgue + +Butcher of [Good Mead](../../Places/Ten%20Towns/Good%20Mead.md). We sold him all the sheep. \ No newline at end of file diff --git a/src/People/Good Mead/Shandar Forth.md b/src/People/Good Mead/Shandar Forth.md new file mode 100644 index 0000000..f3d85bc --- /dev/null +++ b/src/People/Good Mead/Shandar Forth.md @@ -0,0 +1,5 @@ +# Shandar Forth + +- Is running for counsellor of [Good Mead](../../Places/Ten%20Towns/Good%20Mead.md). +- Dwarven lodger that came to [Good Mead](../../Places/Ten%20Towns/Good%20Mead.md) a couple of years ago. +- Is a redbeard and "says it like it is". \ No newline at end of file diff --git a/src/People/Good Mead/Soapy Dee.md b/src/People/Good Mead/Soapy Dee.md new file mode 100644 index 0000000..651c081 --- /dev/null +++ b/src/People/Good Mead/Soapy Dee.md @@ -0,0 +1,3 @@ +# Soapy Dee + +Sells Soap in [Good Mead](../../Places/Ten%20Towns/Good%20Mead.md). Sold whale oil to her. \ No newline at end of file diff --git a/src/People/Kendrick Rielsbarrow.md b/src/People/Kendrick Rielsbarrow.md new file mode 100644 index 0000000..0468706 --- /dev/null +++ b/src/People/Kendrick Rielsbarrow.md @@ -0,0 +1,6 @@ +# Kendrick Rielsbarrow + +- Was the original speaker of [Good Mead](../Places/Ten%20Towns/Good%20Mead.md) before he was murdered. +- Was murdered right around when we started the adventure. +- Died fighting [Doug the Veeg Marauder(dead)](Finding%20the%20Casks%20of%20Mead%20Quest/Doug%20the%20Veeg%20Marauder(dead).md) while defending the casks and mead. +- After looking at his body at the [Huitzilopchtli(Huwie)](Player%20Characters/Huitzilopchtli(Huwie).md) determined that he not only fought [Doug the Veeg Marauder(dead)](Finding%20the%20Casks%20of%20Mead%20Quest/Doug%20the%20Veeg%20Marauder(dead).md) but also and [Friend the Ogre(dead)](Finding%20the%20Casks%20of%20Mead%20Quest/Friend%20the%20Ogre(dead).md). diff --git a/src/People/Klaska.md b/src/People/Klaska.md new file mode 100644 index 0000000..4c54f95 --- /dev/null +++ b/src/People/Klaska.md @@ -0,0 +1,8 @@ +# Klaska + +We arrested and interrogated him. Worked for [Durth Sunblight(dead)](People/Durth%20Sunblight(dead).md). +Told us: +- There is a hidden fortress in the mountains currently known as [Xardorok's Fortress](../Places/Xardorok's%20Fortress.md). +- Told us that the ferry they payed for([[Scython]]) has a map leading to this fortress. +- Told us the fortress has a forge made of a dragon heart. +- [Xardorok Sunblight](Xardorok%20Sunblight.md) has another son, [Nildar Sunblight](Nildar%20Sunblight.md), who commands a secret outpost on the northeast side of [Kelvin's Cairn](../Places/Kelvin's%20Cairn.md) \ No newline at end of file diff --git a/src/People/Krintaas.md b/src/People/Krintaas.md new file mode 100644 index 0000000..1d0b46c --- /dev/null +++ b/src/People/Krintaas.md @@ -0,0 +1,3 @@ +# Krintaas + +The undead body guard of [Dzaan](People/Dzaan.md). Asked us to help him ressurect [Dzaan](People/Dzaan.md) after much interrogation we agreed. \ No newline at end of file diff --git a/src/People/Nass Lantomir.md b/src/People/Nass Lantomir.md new file mode 100644 index 0000000..7e1117d --- /dev/null +++ b/src/People/Nass Lantomir.md @@ -0,0 +1,4 @@ +# Nass Lantomir + +- Weakness: always looking ahead, never behind +- Is a mind reader. \ No newline at end of file diff --git a/src/People/Nildar Sunblight.md b/src/People/Nildar Sunblight.md new file mode 100644 index 0000000..28a6251 --- /dev/null +++ b/src/People/Nildar Sunblight.md @@ -0,0 +1,3 @@ +# Nildar Sunblight + +Son of [Xardorok Sunblight](Xardorok%20Sunblight.md). Commands a secret outpost on the northeast side of [Kelvin's Cairn](../Places/Kelvin's%20Cairn.md). \ No newline at end of file diff --git a/src/People/Player Characters/Glasha.md b/src/People/Player Characters/Glasha.md new file mode 100644 index 0000000..fffbe5e --- /dev/null +++ b/src/People/Player Characters/Glasha.md @@ -0,0 +1,5 @@ +# Glasha + +## Half-Orc Fighter + +Was a professional body guard before retiring to go exploring. \ No newline at end of file diff --git a/src/People/Player Characters/Huitzilopchtli(Huwie).md b/src/People/Player Characters/Huitzilopchtli(Huwie).md new file mode 100644 index 0000000..b657866 --- /dev/null +++ b/src/People/Player Characters/Huitzilopchtli(Huwie).md @@ -0,0 +1,5 @@ +# Huitzilopchtli(Huwie) + +## Human Sorcerer + +Also wanted to learn the lore of the land. \ No newline at end of file diff --git a/src/People/Player Characters/Jewo Flasted.md b/src/People/Player Characters/Jewo Flasted.md new file mode 100644 index 0000000..33c0911 --- /dev/null +++ b/src/People/Player Characters/Jewo Flasted.md @@ -0,0 +1,5 @@ +# Jewo Flasted + +## Dwarf Monk + +Wanted to learn the lore of the land. Eventually started chasing dreams of becoming a politician. \ No newline at end of file diff --git a/src/People/Player Characters/Rickard Von Baer.md b/src/People/Player Characters/Rickard Von Baer.md new file mode 100644 index 0000000..3443b84 --- /dev/null +++ b/src/People/Player Characters/Rickard Von Baer.md @@ -0,0 +1,5 @@ +# Rickard Von Baer + +## Human Paladin + +Is a goodie-two-shoes, but also loves good mead. \ No newline at end of file diff --git a/src/People/Scython.md b/src/People/Scython.md new file mode 100644 index 0000000..4b0d236 --- /dev/null +++ b/src/People/Scython.md @@ -0,0 +1,3 @@ +# Scython + +Owner of a ferry. Innocent, carried the map leading to [Xardorok's Fortress](../Places/Xardorok's%20Fortress.md). \ No newline at end of file diff --git a/src/People/Sephek Kaltro.md b/src/People/Sephek Kaltro.md new file mode 100644 index 0000000..aaf6588 --- /dev/null +++ b/src/People/Sephek Kaltro.md @@ -0,0 +1,4 @@ +# Sephek Kaltro + +- [Hlin Trollbane](Good%20Mead/Hlin%20Trollbane.md) suspects he is the cause of the [Ten Town Murders](../Quests/Ten%20Town%20Murders.md). +- [Hlin Trollbane](Good%20Mead/Hlin%20Trollbane.md) says he suspiciously looks comfortable without wearing any winter gear outside. \ No newline at end of file diff --git a/src/People/Vellynne Harpell.md b/src/People/Vellynne Harpell.md new file mode 100644 index 0000000..1c5a368 --- /dev/null +++ b/src/People/Vellynne Harpell.md @@ -0,0 +1,3 @@ +# Vellynne Harpell + +- As cold and caring as the corpses she animates. \ No newline at end of file diff --git a/src/People/Xardorok Sunblight.md b/src/People/Xardorok Sunblight.md new file mode 100644 index 0000000..eaa5f87 --- /dev/null +++ b/src/People/Xardorok Sunblight.md @@ -0,0 +1,5 @@ +# Xardorok Sunblight + +Sent his son [Durth Sunblight(dead)](Durth%20Sunblight(dead).md) to collect pieces of the [Weird Statue](../Places/Ten%20Towns/Easthaven/Easthaven.md#Weird%20Statue) so that he could somehow become God King. + +Has another son called [Nildar Sunblight](Nildar%20Sunblight.md). \ No newline at end of file diff --git a/src/Places/Doug's Lair.md b/src/Places/Doug's Lair.md new file mode 100644 index 0000000..2cd6bf7 --- /dev/null +++ b/src/Places/Doug's Lair.md @@ -0,0 +1,6 @@ +# Doug's Lair + +- Part of the [Finding the Casks of Mead](../Quests/Completed/Finding%20the%20Casks%20of%20Mead.md) quest. +- Found a room with a large slab depicting an ancient nomadic tribe crossing the mountains, and upon further examination, they see the chieftain is casting a powerful spell with their wand. +- Frozen pond with a statue of [Silvanus](../Religions/Silvanus.md) found under the ice. +- Found mammoth tusks that we brought with us. \ No newline at end of file diff --git a/src/Places/Kelvin's Cairn.md b/src/Places/Kelvin's Cairn.md new file mode 100644 index 0000000..ce37de6 --- /dev/null +++ b/src/Places/Kelvin's Cairn.md @@ -0,0 +1,3 @@ +# Kelvin's Cairn + +- There is a secret outpost on the northeast side run by [Nildar Sunblight](../People/Nildar%20Sunblight.md) \ No newline at end of file diff --git a/src/Places/Lost Spire Of Metheril.md b/src/Places/Lost Spire Of Metheril.md new file mode 100644 index 0000000..effc581 --- /dev/null +++ b/src/Places/Lost Spire Of Metheril.md @@ -0,0 +1,5 @@ +# Lost Spire Of Metheril + +Piece of the floating castle known as Metheril. It appears to have broken off and embedded itself into the ground. + +The rune chamber that brought back [Dzaan](../People/Dzaan.md) to life can also be used for illusionary objects or creatures. However this one is damaged so it might not work properly. \ No newline at end of file diff --git a/src/Places/Ten Towns/Bremen.md b/src/Places/Ten Towns/Bremen.md new file mode 100644 index 0000000..be5059d --- /dev/null +++ b/src/Places/Ten Towns/Bremen.md @@ -0,0 +1,3 @@ +# Bremen + +Town where the wife [Cynthia](../../People/Bremen/Cynthia.md) of the headless guy resides. \ No newline at end of file diff --git a/src/Places/Ten Towns/Bryn Shander.md b/src/Places/Ten Towns/Bryn Shander.md new file mode 100644 index 0000000..2f89fac --- /dev/null +++ b/src/Places/Ten Towns/Bryn Shander.md @@ -0,0 +1,3 @@ +# Bryn Shander + +This is where the [Council Of Speakers](Council%20Of%20Speakers.md) intervenes. \ No newline at end of file diff --git a/src/Places/Ten Towns/Council Of Speakers.md b/src/Places/Ten Towns/Council Of Speakers.md new file mode 100644 index 0000000..638fabe --- /dev/null +++ b/src/Places/Ten Towns/Council Of Speakers.md @@ -0,0 +1,3 @@ +# Council Of Speakers + +Each town is an independent settlement that elects a leader, or speaker, to represent its interests at meetings of the Council of Speakers, which are infrequent and take place at the Council Hall in [Bryn Shander](Bryn%20Shander.md). These meetings are called to discuss matters of shared interest and to settle disputes between towns. \ No newline at end of file diff --git a/src/Places/Ten Towns/Dougan's Hole.md b/src/Places/Ten Towns/Dougan's Hole.md new file mode 100644 index 0000000..5ed46bc --- /dev/null +++ b/src/Places/Ten Towns/Dougan's Hole.md @@ -0,0 +1,8 @@ +# Dougan's Hole + +- Learned from the barkeep in [Good Mead](Good%20Mead.md) that people live in fear of winter wolves that are the size of horses and smarter then normal wolves. +- Lots of people are incestuous in this town. +- Lead by the speaker [Edgra Durmoot](../../People/Dougan's%20Hole/Edgra%20Durmoot.md). + +## Twenty Stones of Thruun +Standing at the southern edge of town, nineteen of these crudely fashioned granite menhirs are arranged in a rough triangle, with a single stone at the formation's center. No one knows who built this structure or why; the townsfolk maintain that the stones were there when the town's founder, a Chondathan named [Dougan Dubrace(dead)](Dougan%20Dubrace(dead).md), first happened upon this fishing spot. Scholars have tried to research the origin of the structure's name, but all they have found are allusions to a creature named [Thruun](../../Religions/Thruun.md) in the oldest legends of the northern folk. Some speculate that [Thruun](../../Religions/Thruun.md) was a god, while others believe it's a destructive elemental spirit bound to this location by ancient druidic magic. diff --git a/src/Places/Ten Towns/Easthaven/Easthaven.md b/src/Places/Ten Towns/Easthaven/Easthaven.md new file mode 100644 index 0000000..b2b74bd --- /dev/null +++ b/src/Places/Ten Towns/Easthaven/Easthaven.md @@ -0,0 +1,23 @@ +# Easthaven + +One of the towns that performs the ritual sacrifices. + +We entered this town right when the red wizard [Dzaan](../../../People/Dzaan.md) was burned at the stake. + +[Imdra Arlaggath](../../../People/Easthaven/Imdra%20Arlaggath.md) is the captain of the Easthaven militia. Explained the reasons [Dzaan](../../../People/Dzaan.md) was burned at the stake. Gave us information about the treasure [Dzaan](../../../People/Dzaan.md) found([Dzaan's Treasure](../../../Quests/Completed/Dzaan's%20Treasure.md)), in return we needed to help the town find [The Missing Fisherman](../../../Quests/Completed/The%20Missing%20Fisherman.md). + +## Weird Statue + +There is a weird statue in the speaker hall. This object is actually the figurehead of a ship and is carved in the likeness of a winged demon. It stands 8 feet tall. A band of adventurers used a telekinesis spell to raise the figurehead from the depths of [Lac Dinneshere](Lac%20Dinneshere.md) a few months ago and hauled it to Easthaven, hoping for a reward. What they got was hardly worth the effort, and Speaker [Danneth Waylen](../../../People/Easthaven/Danneth%20Waylen.md) doesn't know what else to do with the figurehead except store it here, out of the public eye. He fears the figurehead is tainted by demonic magic and has warned his staff not to touch it. + +We determined it is indeed a desecrated object. + +When we went to inspect it at night, we found some Gray Dwarves taht broke into the speaker's hall, killed the guards, and were trying to steal pieces of the statue. We defeated the Dwarves and captured one of them. The main dwarf [Durth Sunblight(dead)](People/Durth%20Sunblight(dead).md) was killed. We captured the one named [Klaska](../../../People/Klaska.md). + +There was also a crying wet ghost near the statue. We ignored her for hours until we were ready to speak to her where she initiated combat against us. We defeated her. + +The following morning we arrested and interrogated [Klaska](../../../People/Klaska.md). + +## White Lady Inn + +We talked to a bard called [Rinaldo](../../../People/Easthaven/Rinaldo.md) that told us about [The White Lady's Treasure](../../../Quests/The%20White%20Lady's%20Treasure.md). He then let us do a seance with the White Lady. We asked her if we could defeated [Auril the Frostmaiden](../../../People/Auril%20the%20Frostmaiden.md) and if we could get the location of the treasure(asked this in at least 4 different ways). The White Lady said no to all the above. \ No newline at end of file diff --git a/src/Places/Ten Towns/Easthaven/Lac Dinneshere.md b/src/Places/Ten Towns/Easthaven/Lac Dinneshere.md new file mode 100644 index 0000000..a996e89 --- /dev/null +++ b/src/Places/Ten Towns/Easthaven/Lac Dinneshere.md @@ -0,0 +1,3 @@ +# Lac Dinneshere + +Lake in [Easthaven](Easthaven.md). Supposedly there is a treasure at the bottom of this lake. \ No newline at end of file diff --git a/src/Places/Ten Towns/Easthaven/The Caverns Of Lac Dinneshere.md b/src/Places/Ten Towns/Easthaven/The Caverns Of Lac Dinneshere.md new file mode 100644 index 0000000..3a28f12 --- /dev/null +++ b/src/Places/Ten Towns/Easthaven/The Caverns Of Lac Dinneshere.md @@ -0,0 +1,3 @@ +# Caverns of Lac Dinneshere + +Found a drawing showing frost giants wading up a river to a cavern that contains a hot spring, in which they drown themselves. \ No newline at end of file diff --git a/src/Places/Ten Towns/Good Mead.md b/src/Places/Ten Towns/Good Mead.md new file mode 100644 index 0000000..a30e58d --- /dev/null +++ b/src/Places/Ten Towns/Good Mead.md @@ -0,0 +1,20 @@ +# Good Mead + +- Started in this town, in the tavern. +- [Kendrick Rielsbarrow](../../People/Kendrick%20Rielsbarrow.md), the speaker of this town, was murdered. +- [Hlin Trollbane](../../People/Good%20Mead/Hlin%20Trollbane.md) resides in this town, in the tavern. +- Barkeep gave us a quest to [find the missing mead](../../Quests/Completed/Finding%20the%20Casks%20of%20Mead.md). +- Found out foxes are a delicacy here. +- Barkeep told us about [The Winter Wolf Problem](../../Quests/Completed/The%20Winter%20Wolf%20Problem.md) in [Dougan's Hole](Dougan's%20Hole.md). +- Barkeep told us about the [Wizard to be Burned](../../Quests/Wizard%20to%20be%20Burned.md) in [Easthaven](Easthaven/Easthaven.md). + +## Shrine of the Flaming Sword +- Where the body of the [Kendrick](../../People/Kendrick%20Rielsbarrow.md) was laid to rest. +- [Jewo Flasted](../../People/Player%20Characters/Jewo%20Flasted.md) learned the following lore of this shrine: + - The shrine was built over a century ago, when the town's rivalry with [Dougan's Hole](Dougan's%20Hole.md) raged so fiercely that the lake, a frequent battlefield, became known as Redwaters. For a time thereafter, nearly all residents of Good Mead paid homage to [Tempus](../../Religions/Tempus.md). Today, the shrine's relevance has dwindled to the point where it's mainly used just for town gatherings. + +## Elections +- There was 2 potential candidates to replace [Kendrick Rielsbarrow](../../People/Kendrick%20Rielsbarrow.md): + - [Olivessa Untapoor](../../People/Good%20Mead/Olivessa%20Untapoor.md) + - [Shandar Forth](../../People/Good%20Mead/Shandar%20Forth.md) +- [Olivessa](../../People/Good%20Mead/Olivessa%20Untapoor.md) however quit running and was replaced by the party. \ No newline at end of file diff --git a/src/Places/Xardorok's Fortress.md b/src/Places/Xardorok's Fortress.md new file mode 100644 index 0000000..1898265 --- /dev/null +++ b/src/Places/Xardorok's Fortress.md @@ -0,0 +1,5 @@ +# Xardorok's Fortress + +Secret fortress hidden in the mountains. Belongs to [Xardorok Sunblight](../People/Xardorok%20Sunblight.md). We know where it lies as we found a secret map leading to it. + +Has a forge powered by still-beating heart of a red dragon. In this forge, [Xardorok Sunblight](../People/Xardorok%20Sunblight.md) is crafting a dragon made of chardalyn, with which he plans to destroy the Ten Towns. The chardalyn dragon is close to being finished. \ No newline at end of file diff --git a/src/Places/Ythryn.md b/src/Places/Ythryn.md new file mode 100644 index 0000000..8676392 --- /dev/null +++ b/src/Places/Ythryn.md @@ -0,0 +1,3 @@ +# Ythryn + +A lost ancient city. [Dzaan](../People/Dzaan.md) is looking for it. \ No newline at end of file diff --git a/src/Quests/Completed/Dzaan's Treasure.md b/src/Quests/Completed/Dzaan's Treasure.md new file mode 100644 index 0000000..962e99b --- /dev/null +++ b/src/Quests/Completed/Dzaan's Treasure.md @@ -0,0 +1,18 @@ +# Dzaan's Treasure +## Status: Complete + +A treasure that [Dzaan](../../People/Dzaan.md) supposedly found. Told to us by [Imdra Arlaggath](../../People/Easthaven/Imdra%20Arlaggath.md). Eventually we found the entrance to this location and entered it. We found out this place is known as [Lost Spire Of Metheril](../../Places/Lost%20Spire%20Of%20Metheril.md). Here we found a lot of lore in the library: + +1. **Magical Wonders of Netheril**. This book is a collection of interviews with Netherese archmages, who discuss their studies of ancient elven magic and the creation of mythallars. The book includes sketches of such devices. A mythallar looks like an enormous crystal ball held in an ornate cradle. The globe sheds bright light in a 300-foot radius and dim light for an additional 300 feet. The globe draws magic from the Weave that can be harnessed for various purposes. For example, Netherese mages used mythallars to keep their cities aloft and empower their magic items. The bigger the mythallar, the more magic it can hold. The largest mythallars are 150 feet in diameter. +2. **Mysteries of the Phaerimm**. This book sheds light on the [Phaerimm](../../Creatures/Phaerimm.md)-telepathic, funnel-shaped monsters of malevolent intellect that lurk in the Underdark-and includes disturbing sketches of them. +3. **Wizards in the Hollow**. The birth of the Netherese empire is chronicled in this otherwise dull, plodding story about the lives of three Netherese wizards. +4. **Ajamar's Guide to the Phantastic**. This breezy, lighthearted treatise on illusion magic was required reading in many Netherese classrooms. It describes clever ways to use common illusion spells. +5. **The Unfettered Mind**. This lunatic text discusses how one might exist solely as a disembodied brain, preserved for eons in a magical suspension fluid. It includes sketches of brains in jars. +6. **From Shadow, Substance**. This speculative work discusses how one might harness the Weave to turn an illusory object or creature into its real counterpart, with commentary and criticism from noteworthy Netherese illusionists. +7. **Here Lies the King**. This elaborately plotted novel features an illusionist who uses magic to impersonate a prince, supplant a king, rule a fictional kingdom for sixty-one years, and fake his own death. +8. **Ventatost**. This book uses testimonials and conspiracy theories to piece together events leading up to the destruction of a Netherese city called Ventatost, which disintegrated as it flew over the forest of Cormanthor nearly two thousand years ago, before the fall of [Ythryn](../../Places/Ythryn.md). +9. **Lost Scrolls of Sabreyl**. Written in Elvish + +Found a room of silence. We found an amulet that we didn't pick up until later. We finally met [Dzaan](../../People/Dzaan.md)'s simulacrum and [Krintaas](../../People/Krintaas.md). They asked us to help them resurrect [Dzaan](../../People/Dzaan.md) and we did. We got rewarded for this with some money and a book that disintegrated. + +We later picked up the amulet. \ No newline at end of file diff --git a/src/Quests/Completed/Finding the Casks of Mead.md b/src/Quests/Completed/Finding the Casks of Mead.md new file mode 100644 index 0000000..c4f80d0 --- /dev/null +++ b/src/Quests/Completed/Finding the Casks of Mead.md @@ -0,0 +1,19 @@ +# Finding the Casks of Mead +## Status: Complete + +## Intro: +- [Kendrick Rielsbarrow](../../People/Kendrick%20Rielsbarrow.md) was murdered defending this mead. +- Was stolen by [Doug the Veeg Marauder(dead)](../../People/Finding%20the%20Casks%20of%20Mead%20Quest/Doug%20the%20Veeg%20Marauder(dead).md) and [Friend the Ogre(dead)](../../People/Finding%20the%20Casks%20of%20Mead%20Quest/Friend%20the%20Ogre(dead).md) +- In an attempt to find the mead, a search party was sent but went missing. + +## Resolution: +- Ran into [Fef](../../People/Good%20Mead/Fef.md) who found the missing search party all dead. He was running back to [Good Mead](../../Places/Ten%20Towns/Good%20Mead.md) in a panic. +- We found the militia. Followed the tracks from the search party to where [Doug](../../People/Finding%20the%20Casks%20of%20Mead%20Quest/Doug%20the%20Veeg%20Marauder(dead).md) lives. +- While following the tracks encountered a [Chwinga](../../Creatures/Chwinga.md), where we attempted to hunt it and mistook it for a fox. +- Eventually reached [Doug's Lair](../../Places/Doug's%20Lair.md), where we discussed about potential alternative solutions but he was not having it. +- Fought [Doug the Veeg Marauder(dead)](../../People/Finding%20the%20Casks%20of%20Mead%20Quest/Doug%20the%20Veeg%20Marauder(dead).md), [Friend the Ogre(dead)](../../People/Finding%20the%20Casks%20of%20Mead%20Quest/Friend%20the%20Ogre(dead).md) and a bear and defeated them. +- Obtained the legendary "Doug's Spear" as well as other various loot. +- [Gahg the Veeg Marauder](../../People/Finding%20the%20Casks%20of%20Mead%20Quest/Gahg%20the%20Veeg%20Marauder.md) showed up. Convinced her that [Doug the Veeg Marauder(dead)](../../People/Finding%20the%20Casks%20of%20Mead%20Quest/Doug%20the%20Veeg%20Marauder(dead).md) murder suicided himself and friends. +- We found a broken wagon and [Huitzilopchtli(Huwie)](Huitzilopchtli(Huwie).md) fixed it. +- We collected and kept all the sheep and goats. +- Went back into town and turned in quest, thus completing it. \ No newline at end of file diff --git a/src/Quests/Completed/The Missing Fisherman.md b/src/Quests/Completed/The Missing Fisherman.md new file mode 100644 index 0000000..162bf22 --- /dev/null +++ b/src/Quests/Completed/The Missing Fisherman.md @@ -0,0 +1,8 @@ +# The Missing Fisherman +## Status: Completed + +Some fishers had gone missing at the lake [Lac Dinneshere](../../Places/Ten%20Towns/Easthaven/Lac%20Dinneshere.md) and we were sent out to find them by [Imdra Arlaggath](../../People/Easthaven/Imdra%20Arlaggath.md). We went to the pier and talked to the head [Captain Ahab](../../People/Easthaven/Captain%20Ahab.md) to assist us with a boat to find them. + +Described the people that went missing: they worked for him and used the boat called the Unsinkable IV. [Missing Fisherman](../../People/Easthaven/The%204%20Fisherman.md) were known as Sasha, Derek, Jessica, Jim. + +We went out to the lake with the captain, eventually we found the Unsinkabale IV with no crew near [The Caverns Of Lac Dinneshere](../../Places/Ten%20Towns/Easthaven/The%20Caverns%20Of%20Lac%20Dinneshere.md). We then went into the caverns searching them. In there we found drawings(see specific article). We found a wolf which we defeated. Also found a skeleton entombed in ice. It broke out of the ice so we also defeated it. Finally we encountered a witch called [Maud Chiselbone(dead)](Maud%20Chiselbone(dead).md) and her wisp. We beat the witch into submission, she agreed to offer the location of the treasure if we let her live. We denied this and defeated her. She killed the fisherman and put them in a stew. We returned to [Easthaven](../../Places/Ten%20Towns/Easthaven/Easthaven.md) and turned in the quest. \ No newline at end of file diff --git a/src/Quests/Completed/The Winter Wolf Problem.md b/src/Quests/Completed/The Winter Wolf Problem.md new file mode 100644 index 0000000..caf6483 --- /dev/null +++ b/src/Quests/Completed/The Winter Wolf Problem.md @@ -0,0 +1,24 @@ +# The Winter Wolf Problem +## Status: Complete + +Wolves that kidnapped and bothered [Dougan's Hole](../../Places/Ten%20Towns/Dougan's%20Hole.md) +- 2 Wolves + - [Koran(dead)](Koran(dead).md) + - [Kanan(dead)](../../People/Dougan's%20Hole/Kanan(dead).md) +Koran attempted to trick us but we saw through it and fought them both. Once they started losing [Kanan(dead)](Kanan(dead).md) ran away for help while [Koran(dead)](Koran(dead).md) tried to hold us back and slow us down. After defeating [Koran(dead)](Koran(dead).md) we turned him into a pelt. + +Following the footsteps we were eventually led to the lodge where the wolves were hiding out. Using the wolf pelt as a disguise we trick the other wolf into showing us where the kid prisoners are being held. We then let the kids out and tricked the remaining wolf into the cage where we locked him up and then defeated him as well. + +- Searched the remaining area and found a goat statue. +- Found a frozen hacked up corpse of a frost giant. +- Found a [Chwinga](../../Creatures/Chwinga.md) stone statue. +- Found 3 icewind kobolds([Snorp, Holgi, Zilbo](../../People/Dougan's%20Hole/Snorp,%20Holgi,%20Zilbo.md)) + - They say the [Chwinga](../../Creatures/Chwinga.md) startled them, so they killed it and it turned to stone. +- Found barrels of whale oil +- Found goo of a [Remorhaz](../../Creatures/Remorhaz.md) worm + +Encountered a mammoth. Failed to convince him to let us take his things so we burned him alive. + +Destroyed the entire structure by destroying an ice rune. + +Returned the kids to their mom: [Hilda](../../People/Dougan's%20Hole/Hilda.md) diff --git a/src/Quests/Ten Town Murders.md b/src/Quests/Ten Town Murders.md new file mode 100644 index 0000000..8a656aa --- /dev/null +++ b/src/Quests/Ten Town Murders.md @@ -0,0 +1,8 @@ +# Ten Town Murders +## Status: In Progress + +- A string of murders happening in the Ten_Towns +- [Hlin Trollbane](../People/Good%20Mead/Hlin%20Trollbane.md) told us: + - [Sephek Kaltro](../People/Sephek%20Kaltro.md) to be the cause of these murders. He works for a company called [Torg](../Companies&Groups/Torg.md) + - He is suspected to be doing the work of [Auril the Frostmaiden](../People/Auril%20the%20Frostmaiden.md) as the victims all drew lots to be sacrificed, and they tried to cheat their way out so they supposedly murdered by [Sephek Kaltro](../People/Sephek%20Kaltro.md). + - [Hlin Trollbane](../People/Good%20Mead/Hlin%20Trollbane.md) would like proof of him doing these things. \ No newline at end of file diff --git a/src/Quests/The White Lady's Treasure.md b/src/Quests/The White Lady's Treasure.md new file mode 100644 index 0000000..354940d --- /dev/null +++ b/src/Quests/The White Lady's Treasure.md @@ -0,0 +1,6 @@ +# The White Lady's Treasure +## Status: In Progress + +[Maud Chiselbone(dead)](Maud%20Chiselbone(dead).md) was going to give us the location of the treasure in return for her life. We denied this and defeated her. + +[Rinaldo](../People/Easthaven/Rinaldo.md) sang to us about a hidden treasure of the White Lady's Husband. Treasure never left the husband's side. The. Sang to us about a hidden treasure of the White Lady's Husband. Treasure never left the husband's side. The treasure is so big that it sunk his boat or as the story goes that he saw his dead wife and that caused the boat to sink. [Rinaldo](../People/Easthaven/Rinaldo.md) is certain the treasure lies at the bottom of the lake. \ No newline at end of file diff --git a/src/Quests/Wizard to be Burned.md b/src/Quests/Wizard to be Burned.md new file mode 100644 index 0000000..5747c86 --- /dev/null +++ b/src/Quests/Wizard to be Burned.md @@ -0,0 +1,10 @@ +# Wizard to be Burned +## Status: In Progress + +[Dzaan](../People/Dzaan.md) was burned at the stake in [Easthaven](../Places/Ten%20Towns/Easthaven/Easthaven.md). We got a clue that he has hidden [Treasure](Completed/Dzaan's%20Treasure.md) and its location from [Imdra Arlaggath](../People/Easthaven/Imdra%20Arlaggath.md). When we got there we found his simulacrum and [Krintaas](../People/Krintaas.md). They asked us to help resurrect him and so we did. + +[Dzaan](../People/Dzaan.md) then asked us to keep and eye out and defeat the 3 mages from the [Arcane Brotherhood](../Companies&Groups/Arcane%20Brotherhood.md). + +He is searching for hidden location of [Ythryn](../Places/Ythryn.md) so that he could plunder it. + +[Dzaan](../People/Dzaan.md) also has a strange timer above his head only visible to [Huitzilopchtli(Huwie)](../People/Player%20Characters/Huitzilopchtli(Huwie).md). \ No newline at end of file diff --git a/src/Readme.md b/src/Readme.md new file mode 100644 index 0000000..9757f07 --- /dev/null +++ b/src/Readme.md @@ -0,0 +1,89 @@ +# Summary + +- Companies + - [Arcane Brotherhood](Companies&Groups/Arcane%20Brotherhood.md) + - [Torg](Companies&Groups/Torg.md) +- Creatures + - [Chwinga](Creatures/Chwinga.md) + - [Remorhaz](Creatures/Remorhaz.md) +- People + - Bremen + - [Charles](People/Bremen/Charles.md) + - [Cynthia](People/Bremen/Cynthia.md) + - Dougan's Hole + - [Dougan Dubrace(dead)](People/Dougan's%20Hole/Dougan%20Dubrace(dead).md) + - [Edgra Durmoot](People/Dougan's%20Hole/Edgra%20Durmoot.md) + - [Finn](People/Dougan's%20Hole/Finn.md) + - [Hilda](People/Dougan's%20Hole/Hilda.md) + - [Kanan(dead)](People/Dougan's%20Hole/Kanan(dead).md) + - [Koran(dead)](People/Dougan's%20Hole/Koran(dead).md) + - [Sil](People/Dougan's%20Hole/Sil.md) + - [Snorp, Holgi, Zilbo](People/Dougan's%20Hole/Snorp,%20Holgi,%20Zilbo.md) + - Easthaven + - [Captain Ahab](People/Easthaven/Captain%20Ahab.md) + - [Danneth Waylen](People/Easthaven/Danneth%20Waylen.md) + - [Imdra Arlaggath](People/Easthaven/Imdra%20Arlaggath.md) + - [Maud Chiselbone(dead)](People/Easthaven/Maud%20Chiselbone(dead).md) + - [Rinaldo](People/Easthaven/Rinaldo.md) + - [The 4 Fisherman](People/Easthaven/The%204%20Fisherman.md) + - Finding the Casks of Mead Quest + - [Doug the Veeg Marauder(dead)](People/Finding%20the%20Casks%20of%20Mead%20Quest/Doug%20the%20Veeg%20Marauder(dead).md) + - [Friend the Ogre(dead)](People/Finding%20the%20Casks%20of%20Mead%20Quest/Friend%20the%20Ogre(dead).md) + - [Gahg the Veeg Marauder](People/Finding%20the%20Casks%20of%20Mead%20Quest/Gahg%20the%20Veeg%20Marauder.md) + - Good Mead + - [Al the Chemist](People/Good%20Mead/Al%20the%20Chemist.md) + - [Fef](People/Good%20Mead/Fef.md) + - [Hlin Trollbane](People/Good%20Mead/Hlin%20Trollbane.md) + - [Joanna Gutenstein](People/Good%20Mead/Joanna%20Gutenstein.md) + - [Olivessa Untapoor](People/Good%20Mead/Olivessa%20Untapoor.md) + - [Peter Udgue](People/Good%20Mead/Peter%20Udgue.md) + - [Shandar Forth](People/Good%20Mead/Shandar%20Forth.md) + - [Soapy Dee](People/Good%20Mead/Soapy%20Dee.md) + - Player Characters + - [Glasha](People/Player%20Characters/Glasha.md) + - [Huitzilopchtli(Huwie)](People/Player%20Characters/Huitzilopchtli(Huwie).md) + - [Jewo Flasted](People/Player%20Characters/Jewo%20Flasted.md) + - [Rickard Von Baer](People/Player%20Characters/Rickard%20Von%20Baer.md) + - [Auril the Frostmaiden](People/Auril%20the%20Frostmaiden.md) + - [Avarice](People/Avarice.md) + - [Durth Sunblight(dead)](People/Durth%20Sunblight(dead).md) + - [Dzaan](People/Dzaan.md) + - [Garagi(dead)](People/Garagi(dead).md) + - [Kendrick Rielsbarrow](People/Kendrick%20Rielsbarrow.md) + - [Klaska](People/Klaska.md) + - [Krintaas](People/Krintaas.md) + - [Nass Lantomir](People/Nass%20Lantomir.md) + - [Nildar Sunblight](People/Nildar%20Sunblight.md) + - [Scython](People/Scython.md) + - [Sephek Kaltro](People/Sephek%20Kaltro.md) + - [Vellynne Harpell](People/Vellynne%20Harpell.md) + - [Xardorok Sunblight](People/Xardorok%20Sunblight.md) +- Places + - Ten Towns + - Easthaven + - [Easthaven](Places/Ten%20Towns/Easthaven/Easthaven.md) + - [Lac Dinneshere](Places/Ten%20Towns/Easthaven/Lac%20Dinneshere.md) + - [The Caverns Of Lac Dinneshere](Places/Ten%20Towns/Easthaven/The%20Caverns%20Of%20Lac%20Dinneshere.md) + - [Bremen](Places/Ten%20Towns/Bremen.md) + - [Bryn Shander](Places/Ten%20Towns/Bryn%20Shander.md) + - [Council Of Speakers](Places/Ten%20Towns/Council%20Of%20Speakers.md) + - [Dougan's Hole](Places/Ten%20Towns/Dougan's%20Hole.md) + - [Good Mead](Places/Ten%20Towns/Good%20Mead.md) + - [Doug's Lair](Places/Doug's%20Lair.md) + - [Kelvin's Cairn](Places/Kelvin's%20Cairn.md) + - [Lost Spire Of Metheril](Places/Lost%20Spire%20Of%20Metheril.md) + - [Xardorok's Fortress](Places/Xardorok's%20Fortress.md) + - [Ythryn](Places/Ythryn.md) +- Quests + - Completed + - [Dzaan's Treasure](Quests/Completed/Dzaan's%20Treasure.md) + - [Finding the Casks of Mead](Quests/Completed/Finding%20the%20Casks%20of%20Mead.md) + - [The Missing Fisherman](Quests/Completed/The%20Missing%20Fisherman.md) + - [The Winter Wolf Problem](Quests/Completed/The%20Winter%20Wolf%20Problem.md) + - [Ten Town Murders](Quests/Ten%20Town%20Murders.md) + - [The White Lady's Treasure](Quests/The%20White%20Lady's%20Treasure.md) + - [Wizard to be Burned](Quests/Wizard%20to%20be%20Burned.md) +- Religions + - [Silvanus](Religions/Silvanus.md) + - [Tempus](Religions/Tempus.md) + - [Thruun](Religions/Thruun.md) diff --git a/src/Religions/Silvanus.md b/src/Religions/Silvanus.md new file mode 100644 index 0000000..a201662 --- /dev/null +++ b/src/Religions/Silvanus.md @@ -0,0 +1,3 @@ +# Silvanus + +God of Nature. The oak leaf is his symbol. \ No newline at end of file diff --git a/src/Religions/Tempus.md b/src/Religions/Tempus.md new file mode 100644 index 0000000..b650932 --- /dev/null +++ b/src/Religions/Tempus.md @@ -0,0 +1,3 @@ +# Tempus + +- God of war \ No newline at end of file diff --git a/src/Religions/Thruun.md b/src/Religions/Thruun.md new file mode 100644 index 0000000..93c1384 --- /dev/null +++ b/src/Religions/Thruun.md @@ -0,0 +1,5 @@ +# Thruun + +Some speculate that Thruun was a god, while others believe it's a destructive elemental spirit bound to this location by ancient druidic magic. + +There is a ring of stones named after him at [Twenty Stones of Thruun](../Places/Ten%20Towns/Dougan's%20Hole.md#Twenty%20Stones%20of%20Thruun) \ No newline at end of file diff --git a/src/SUMMARY.md b/src/SUMMARY.md new file mode 100644 index 0000000..8452caa --- /dev/null +++ b/src/SUMMARY.md @@ -0,0 +1,91 @@ +# Summary + +[Readme](Readme.md) + +- [Companies]() + - [Arcane Brotherhood](Companies&Groups/Arcane%20Brotherhood.md) + - [Torg](Companies&Groups/Torg.md) +- [Creatures]() + - [Chwinga](Creatures/Chwinga.md) + - [Remorhaz](Creatures/Remorhaz.md) +- [People]() + - [Bremen]() + - [Charles](People/Bremen/Charles.md) + - [Cynthia](People/Bremen/Cynthia.md) + - [Dougan's Hole]() + - [Dougan Dubrace(dead)](People/Dougan's%20Hole/Dougan%20Dubrace(dead).md) + - [Edgra Durmoot](People/Dougan's%20Hole/Edgra%20Durmoot.md) + - [Finn](People/Dougan's%20Hole/Finn.md) + - [Hilda](People/Dougan's%20Hole/Hilda.md) + - [Kanan(dead)](People/Dougan's%20Hole/Kanan(dead).md) + - [Koran(dead)](People/Dougan's%20Hole/Koran(dead).md) + - [Sil](People/Dougan's%20Hole/Sil.md) + - [Snorp, Holgi, Zilbo](People/Dougan's%20Hole/Snorp,%20Holgi,%20Zilbo.md) + - [Easthaven]() + - [Captain Ahab](People/Easthaven/Captain%20Ahab.md) + - [Danneth Waylen](People/Easthaven/Danneth%20Waylen.md) + - [Imdra Arlaggath](People/Easthaven/Imdra%20Arlaggath.md) + - [Maud Chiselbone(dead)](People/Easthaven/Maud%20Chiselbone(dead).md) + - [Rinaldo](People/Easthaven/Rinaldo.md) + - [The 4 Fisherman](People/Easthaven/The%204%20Fisherman.md) + - [Finding the Casks of Mead Quest]() + - [Doug the Veeg Marauder(dead)](People/Finding%20the%20Casks%20of%20Mead%20Quest/Doug%20the%20Veeg%20Marauder(dead).md) + - [Friend the Ogre(dead)](People/Finding%20the%20Casks%20of%20Mead%20Quest/Friend%20the%20Ogre(dead).md) + - [Gahg the Veeg Marauder](People/Finding%20the%20Casks%20of%20Mead%20Quest/Gahg%20the%20Veeg%20Marauder.md) + - [Good Mead]() + - [Al the Chemist](People/Good%20Mead/Al%20the%20Chemist.md) + - [Fef](People/Good%20Mead/Fef.md) + - [Hlin Trollbane](People/Good%20Mead/Hlin%20Trollbane.md) + - [Joanna Gutenstein](People/Good%20Mead/Joanna%20Gutenstein.md) + - [Olivessa Untapoor](People/Good%20Mead/Olivessa%20Untapoor.md) + - [Peter Udgue](People/Good%20Mead/Peter%20Udgue.md) + - [Shandar Forth](People/Good%20Mead/Shandar%20Forth.md) + - [Soapy Dee](People/Good%20Mead/Soapy%20Dee.md) + - [Player Characters]() + - [Glasha](People/Player%20Characters/Glasha.md) + - [Huitzilopchtli(Huwie)](People/Player%20Characters/Huitzilopchtli(Huwie).md) + - [Jewo Flasted](People/Player%20Characters/Jewo%20Flasted.md) + - [Rickard Von Baer](People/Player%20Characters/Rickard%20Von%20Baer.md) + - [Auril the Frostmaiden](People/Auril%20the%20Frostmaiden.md) + - [Avarice](People/Avarice.md) + - [Durth Sunblight(dead)](People/Durth%20Sunblight(dead).md) + - [Dzaan](People/Dzaan.md) + - [Garagi(dead)](People/Garagi(dead).md) + - [Kendrick Rielsbarrow](People/Kendrick%20Rielsbarrow.md) + - [Klaska](People/Klaska.md) + - [Krintaas](People/Krintaas.md) + - [Nass Lantomir](People/Nass%20Lantomir.md) + - [Nildar Sunblight](People/Nildar%20Sunblight.md) + - [Scython](People/Scython.md) + - [Sephek Kaltro](People/Sephek%20Kaltro.md) + - [Vellynne Harpell](People/Vellynne%20Harpell.md) + - [Xardorok Sunblight](People/Xardorok%20Sunblight.md) +- [Places]() + - [Ten Towns]() + - [Easthaven]() + - [Easthaven](Places/Ten%20Towns/Easthaven/Easthaven.md) + - [Lac Dinneshere](Places/Ten%20Towns/Easthaven/Lac%20Dinneshere.md) + - [The Caverns Of Lac Dinneshere](Places/Ten%20Towns/Easthaven/The%20Caverns%20Of%20Lac%20Dinneshere.md) + - [Bremen](Places/Ten%20Towns/Bremen.md) + - [Bryn Shander](Places/Ten%20Towns/Bryn%20Shander.md) + - [Council Of Speakers](Places/Ten%20Towns/Council%20Of%20Speakers.md) + - [Dougan's Hole](Places/Ten%20Towns/Dougan's%20Hole.md) + - [Good Mead](Places/Ten%20Towns/Good%20Mead.md) + - [Doug's Lair](Places/Doug's%20Lair.md) + - [Kelvin's Cairn](Places/Kelvin's%20Cairn.md) + - [Lost Spire Of Metheril](Places/Lost%20Spire%20Of%20Metheril.md) + - [Xardorok's Fortress](Places/Xardorok's%20Fortress.md) + - [Ythryn](Places/Ythryn.md) +- [Quests]() + - [Completed]() + - [Dzaan's Treasure](Quests/Completed/Dzaan's%20Treasure.md) + - [Finding the Casks of Mead](Quests/Completed/Finding%20the%20Casks%20of%20Mead.md) + - [The Missing Fisherman](Quests/Completed/The%20Missing%20Fisherman.md) + - [The Winter Wolf Problem](Quests/Completed/The%20Winter%20Wolf%20Problem.md) + - [Ten Town Murders](Quests/Ten%20Town%20Murders.md) + - [The White Lady's Treasure](Quests/The%20White%20Lady's%20Treasure.md) + - [Wizard to be Burned](Quests/Wizard%20to%20be%20Burned.md) +- [Religions]() + - [Silvanus](Religions/Silvanus.md) + - [Tempus](Religions/Tempus.md) + - [Thruun](Religions/Thruun.md) -- cgit v1.2.3