migrate to web-weevr

This commit is contained in:
Eric Woodward 2024-01-28 00:47:44 -05:00
parent 37779ddba3
commit f857cb5b60
42 changed files with 1702 additions and 1968 deletions

View File

@ -1,3 +1,4 @@
{
"cSpell.words": ["chainmail"]
"cSpell.words": ["chainmail"],
"files.eol": "\n"
}

View File

@ -1,410 +0,0 @@
const { exists } = require("fs-extra/lib/fs");
module.exports = async (config) => {
const
{ promises: fs } = require("fs"),
fse = require("fs-extra"),
{ version } = require("../package.json"),
packageInfo = fse.statSync("./package.json", "utf-8"),
path = require("path"),
ejs = require("ejs"),
frontMatter = require("front-matter"),
glob = require("glob"),
dictionary = {
"/astral/vessels.html": ["vessel", "vessels"],
"/campaign/timeline.html": ["last session"],
"https://oldschoolessentials.necroticgnome.com/srd/index.php/Structures":
["stronghold"],
"/astral/timeline.html": ["CAC", "BAC", "Common Astral Calendar"],
"/astral/adventuring.html#portals": ["portal", "portals"],
"/astral/adventuring.html#outposts": ["outpost", "outposts"],
"/astral/adventuring.html#fragments": ["island", "islands"],
},
{ build, isRebuild, logFunction: log = () => {}, site } = config || {},
{ outputPath, journalsPerPage = 5, srcPath } = build,
md = require("markdown-it")({
html: true,
linkify: true,
typographer: true,
xhtmlOut: true,
})
.use(require("markdown-it-anchor").default)
.use(require("markdown-it-table-of-contents"), {
containerHeaderHtml:
'<div class="toc-container-header">Contents</div>',
includeLevel: [2, 3, 4],
})
.use(require("markdown-it-footnote"))
.use(require("markdown-it-multimd-table"), {
multiline: true,
rowspan: true,
headerless: true,
multibody: true,
autolabel: true,
})
.use(require("markdown-it-emoji"))
.use(require("markdown-it-mark"))
.use(
require("markdown-it-include"),
path.join(srcPath, "assets", "fragments")
)
/*
.use(require("markdown-it-auto-crosslinker"), {
dictionary,
})
*/
.use(require("markdown-it-implicit-figures"), {
dataType: true,
figcaption: true,
tabindex: true,
lazyLoading: true,
link: true,
}),
copyAssets = async (directory) => {
const assets = await fs.readdir(directory);
assets.forEach(async (asset) => {
// we no longer merge scripts and styles, thanks to http/2's parallel file handling
if (asset === "_root") {
fse.copy(path.join(srcPath, "assets", asset), outputPath);
} else {
fse.copy(
path.join(srcPath, "assets", asset),
path.join(outputPath, asset)
);
}
});
},
getReadTime = (text) => {
const WPM = 275,
fixedString = text.replace(/[^\w\s]+/g, ""),
count = fixedString.split(/\s+/).length;
if (count < WPM) return "less than 1 minute";
else return `${Math.ceil(count / WPM)} minutes`;
},
tagSorter = (a, b) => a.toLowerCase().localeCompare(b.toLowerCase()),
parseFile = (file, pagePath, siteData, isSupport) => {
const { dir, ext, name } = path.parse(file) || {},
hasExt = name.indexOf(".") > -1,
destPath = path.join(outputPath, dir),
filePath = path.join(pagePath, file),
// read page file
data = fse.readFileSync(filePath, "utf-8"),
info = fse.statSync(filePath, "utf-8"),
// render page
{ attributes, body } = frontMatter(data),
{ content_type: contentType, tags: originalTags = [] } =
attributes,
// TODO: Look for tags in posts as well, link to them, and add them to tag pages
tags =
typeof originalTags === "string"
? originalTags.split(/\W+/)
: [].concat(originalTags),
innerTags = (
contentType === "journal"
? body.match(/\b#(\w+)/g) || []
: []
).map((val) => val.replace("#", "")),
allTags = [...tags, ...innerTags].sort(tagSorter),
updatedBody =
contentType === "journal"
? allTags.reduce(
(acc, tag) =>
acc.replace(
`#${tag}`,
`
<a href="/journal/tags/${tag}/index.html">
#<span class="p-category category">${tag}</span>
</a>`
),
body
)
: body;
return {
...config,
page: {
name,
...attributes,
date_upd: attributes?.date_pub !== info.mtime ? info.mtime : '',
body: updatedBody,
destPath,
filePath,
path: path.join(dir, hasExt ? name : `${name}.html`),
tags: [...tags, ...innerTags].sort(tagSorter),
ext,
},
site: {
...site,
pages: isSupport ? siteData : [],
version,
lastUpdated: packageInfo.mtime,
},
};
},
parseContent = (page, siteData) => {site
const {
body,
content_type: contentType,
filePath,
// tags,
} = page || {},
{ ext } = path.parse(filePath) || {},
{ pages, tags } = siteData || {};
let content = body,
readTime;
if (ext === ".md") {
if (contentType === "journal" && typeof body === "string") {
readTime = getReadTime(body);
}
content = md.render(body);
} else if (ext === ".ejs") {
content = ejs.render(
body,
{ page, site: { ...site, pages, tags, version, lastUpdated: packageInfo.mtime, } },
{ filename: filePath }
);
}
return { ...page, content, readTime };
},
renderFile = async (page, isSupport) => {
const {
content,
destPath,
layout,
path: pagePath,
pages,
siteTags,
tags,
} = page || {};
try {
const layoutFileName = `${srcPath}/layouts/${
layout || "default"
}.ejs`,
layoutData = await fs.readFile(layoutFileName, "utf-8"),
completePage = isSupport
? content
: ejs.render(layoutData, {
content,
page,
site: {
...site,
pages,
tags:
page.content_type === "journal"
? siteTags
: tags,
},
filename: layoutFileName,
});
if (!completePage) {
console.log("failed!", pagePath, content);
return;
}
// create destination directory
fse.mkdirsSync(destPath);
// save the html file
fse.writeFileSync(
path.join(outputPath, pagePath),
completePage
);
} catch (e) {
console.log("failed!", pagePath);
console.log("paths", destPath, outputPath);
console.error(e);
return;
}
};
// md.use(emoji);
log(`${isRebuild ? "Reb" : "B"}uilding...`);
// clear destination folder
fse.emptyDirSync(outputPath);
// copy assets folder
await copyAssets(path.join(srcPath, "assets"));
const files = ["pages", "sitePosts"].reduce((acc, pageDir) => {
return [
...acc,
...glob
.sync("**/*.@(md|ejs|html)", {
cwd: path.join(srcPath, pageDir),
})
.map((file) =>
parseFile(file, path.join(srcPath, pageDir))
),
];
}, []),
sortByPubDate = (a, b) => {
if (a.date_pub && b.date_pub) {
let a_dt = new Date(a.date_pub).getTime(),
b_dt = new Date(b.date_pub).getTime();
if (a_dt < b_dt) {
return 1;
}
if (b_dt < a_dt) {
return -1;
}
return 0;
}
if (a.date_pub) return -1;
if (b.date_pub) return 1;
return 0;
},
pages = files
.map(({ page }) => ({ ...page }))
.filter(({ is_draft = false }) => !is_draft)
.filter(({ status }) => status !== "draft")
.sort(sortByPubDate),
tagCloud = pages.reduce((acc, curr) => {
const { tags } = curr;
tags.forEach((tag) => {
if (acc[tag]) acc[tag]++;
else acc[tag] = 1;
});
return acc;
}, {}),
tags = Object.keys(tagCloud).sort(tagSorter),
yearCloud = pages
.filter(({ content_type = "" }) => content_type === "journal")
.reduce((acc, curr) => {
const { date_pub } = curr;
if (date_pub) {
const year = new Date(date_pub).getFullYear();
if (acc[year]) acc[year]++;
else acc[year] = 1;
}
return acc;
}, {}),
years = Object.keys(yearCloud).sort().reverse(),
pagesWithContent = pages.map((page) =>
parseContent(page, { pages, tags })
);
// add data for the whole site to each page as it's rendered
pagesWithContent.forEach((page) => {
renderFile({ ...page, pages: pagesWithContent, siteTags: tags });
});
/* Journal Stuff - Tags & Years */
// make page(s) for each tag
tags.forEach((tag) => {
// check counts
let postCount = tagCloud[tag],
pageCount = Math.ceil(postCount / journalsPerPage);
for (let i = 1; i <= pageCount; i++) {
const firstEntryIndex = journalsPerPage * (i - 1),
lastEntryIndex = journalsPerPage * i;
renderFile({
content: tag,
destPath: path.join(outputPath, "journal", "tags", tag),
entriesToList: pagesWithContent
.filter(
(p) =>
p && Array.isArray(p.tags) && p.tags.includes(tag)
)
.slice(firstEntryIndex, lastEntryIndex),
layout: "tag",
path: `journal/tags/${tag}/${
i === 1 ? "index.html" : `page${i}.html`
}`,
site: { ...site, pages: pagesWithContent, tags },
pageCount,
pageNum: i,
pages: pagesWithContent,
tag,
tags,
title: `Journal Entries Tagged with #${tag}`,
});
}
});
// make page(s) for each year
years.forEach((year) => {
// check counts
let postCount = yearCloud[year],
pageCount = Math.ceil(postCount / journalsPerPage);
for (let i = 1; i <= pageCount; i++) {
const firstEntryIndex = journalsPerPage * (i - 1),
lastEntryIndex = journalsPerPage * i;
console.log("config", config);
// TODO: rethink the data passed in here - you're paging solution works (kinda), take it over the finish line!
renderFile({
content: year,
destPath: path.join(outputPath, "journal", year),
entriesToList: pagesWithContent
.filter(({ content_type = "", date_pub = "" }) => {
if (!date_pub || content_type !== "journal")
return false;
const p_dt = new Date(date_pub).getTime(),
y1_dt = new Date(
`${year}-01-01T00:00:00-0500`
).getTime(),
y2_dt = new Date(
`${year}-12-31T23:59:59-0500`
).getTime();
return p_dt >= y1_dt && p_dt <= y2_dt;
})
.slice(firstEntryIndex, lastEntryIndex),
layout: "journal-year",
path: `journal/${year}/${
i === 1 ? "index.html" : `page${i}.html`
}`,
site: { ...site, pages: pagesWithContent, tags },
pageCount,
pageNum: i,
pages: pagesWithContent,
tags,
title: `Journal Entries from ${year}`,
year,
});
}
});
/* Support pages - anything too weird / specific for markdown rendering */
// collect support pages
const support = ["support"].reduce((acc, pageDir) => {
return [
...acc,
...glob
.sync("**/*.@(md|ejs|html)", {
cwd: path.join(srcPath, pageDir),
})
.map((file) =>
parseFile(
file,
path.join(srcPath, pageDir),
pagesWithContent,
true
)
),
];
}, []);
// write each one out
support.forEach((fileData) => {
const { page } = fileData;
if (page?.ext === ".ejs") {
const pageAndContent = parseContent(page, {
pages: pagesWithContent,
tags,
});
return renderFile({ ...fileData, ...pageAndContent, tags }, true);
}
return renderFile(fileData, true);
});
};

View File

@ -0,0 +1,159 @@
Copyright &copy; 2023-2024 [Eric Woodward](https://www.itsericwoodward.com/)
By exercising the Licensed Rights (defined below), You accept and agree to be bound by the terms and conditions of this Creative Commons Attribution-ShareAlike 4.0 International Public License ("Public License"). To the extent this Public License may be interpreted as a contract, You are granted the Licensed Rights in consideration of Your acceptance of these terms and conditions, and the Licensor grants You such rights in consideration of benefits the Licensor receives from making the Licensed Material available under these terms and conditions.
### Section 1 Definitions.
a. **Adapted Material** means material subject to Copyright and Similar Rights that is derived from or based upon the Licensed Material and in which the Licensed Material is translated, altered, arranged, transformed, or otherwise modified in a manner requiring permission under the Copyright and Similar Rights held by the Licensor. For purposes of this Public License, where the Licensed Material is a musical work, performance, or sound recording, Adapted Material is always produced where the Licensed Material is synched in timed relation with a moving image.
b. **Adapter's License** means the license You apply to Your Copyright and Similar Rights in Your contributions to Adapted Material in accordance with the terms and conditions of this Public License.
c. **BY-SA Compatible License** means a license listed at [creativecommons.org/compatiblelicenses](http://creativecommons.org/compatiblelicenses), approved by Creative Commons as essentially the equivalent of this Public License.
d. **Copyright and Similar Rights** means copyright and/or similar rights closely related to copyright including, without limitation, performance, broadcast, sound recording, and Sui Generis Database Rights, without regard to how the rights are labeled or categorized. For purposes of this Public License, the rights specified in Section 2(b)(1)-(2) are not Copyright and Similar Rights.
e. **Effective Technological Measures** means those measures that, in the absence of proper authority, may not be circumvented under laws fulfilling obligations under Article 11 of the WIPO Copyright Treaty adopted on December 20, 1996, and/or similar international agreements.
f. **Exceptions and Limitations** means fair use, fair dealing, and/or any other exception or limitation to Copyright and Similar Rights that applies to Your use of the Licensed Material.
g. **License Elements** means the license attributes listed in the name of a Creative Commons Public License. The License Elements of this Public License are Attribution and ShareAlike.
h. **Licensed Material** means the artistic or literary work, database, or other material to which the Licensor applied this Public License.
i. **Licensed Rights** means the rights granted to You subject to the terms and conditions of this Public License, which are limited to all Copyright and Similar Rights that apply to Your use of the Licensed Material and that the Licensor has authority to license.
j. **Licensor** means the individual(s) or entity(ies) granting rights under this Public License.
k. **Share** means to provide material to the public by any means or process that requires permission under the Licensed Rights, such as reproduction, public display, public performance, distribution, dissemination, communication, or importation, and to make material available to the public including in ways that members of the public may access the material from a place and at a time individually chosen by them.
l. **Sui Generis Database Rights** means rights other than copyright resulting from Directive 96/9/EC of the European Parliament and of the Council of 11 March 1996 on the legal protection of databases, as amended and/or succeeded, as well as other essentially equivalent rights anywhere in the world.
m. **You** means the individual or entity exercising the Licensed Rights under this Public License. **Your** has a corresponding meaning.
### Section 2 Scope.
a. **_License grant._**
1. Subject to the terms and conditions of this Public License, the Licensor hereby grants You a worldwide, royalty-free, non-sublicensable, non-exclusive, irrevocable license to exercise the Licensed Rights in the Licensed Material to:
A. reproduce and Share the Licensed Material, in whole or in part; and
B. produce, reproduce, and Share Adapted Material.
2. **Exceptions and Limitations.** For the avoidance of doubt, where Exceptions and Limitations apply to Your use, this Public License does not apply, and You do not need to comply with its terms and conditions.
3. **Term.** The term of this Public License is specified in Section 6(a).
4. **Media and formats; technical modifications allowed.** The Licensor authorizes You to exercise the Licensed Rights in all media and formats whether now known or hereafter created, and to make technical modifications necessary to do so. The Licensor waives and/or agrees not to assert any right or authority to forbid You from making technical modifications necessary to exercise the Licensed Rights, including technical modifications necessary to circumvent Effective Technological Measures. For purposes of this Public License, simply making modifications authorized by this Section 2(a)(4) never produces Adapted Material.
5. **Downstream recipients.**
A. **Offer from the Licensor Licensed Material.** Every recipient of the Licensed Material automatically receives an offer from the Licensor to exercise the Licensed Rights under the terms and conditions of this Public License.
B. **Additional offer from the Licensor Adapted Material.** Every recipient of Adapted Material from You automatically receives an offer from the Licensor to exercise the Licensed Rights in the Adapted Material under the conditions of the Adapters License You apply.
C. **No downstream restrictions.** You may not offer or impose any additional or different terms or conditions on, or apply any Effective Technological Measures to, the Licensed Material if doing so restricts exercise of the Licensed Rights by any recipient of the Licensed Material.
6. **No endorsement.** Nothing in this Public License constitutes or may be construed as permission to assert or imply that You are, or that Your use of the Licensed Material is, connected with, or sponsored, endorsed, or granted official status by, the Licensor or others designated to receive attribution as provided in Section 3(a)(1)(A)(i).
b. **_Other rights._**
1. Moral rights, such as the right of integrity, are not licensed under this Public License, nor are publicity, privacy, and/or other similar personality rights; however, to the extent possible, the Licensor waives and/or agrees not to assert any such rights held by the Licensor to the limited extent necessary to allow You to exercise the Licensed Rights, but not otherwise.
2. Patent and trademark rights are not licensed under this Public License.
3. To the extent possible, the Licensor waives any right to collect royalties from You for the exercise of the Licensed Rights, whether directly or through a collecting society under any voluntary or waivable statutory or compulsory licensing scheme. In all other cases the Licensor expressly reserves any right to collect such royalties.
### Section 3 License Conditions.
Your exercise of the Licensed Rights is expressly made subject to the following conditions.
a. **_Attribution._**
1. If You Share the Licensed Material (including in modified form), You must:
A. retain the following if it is supplied by the Licensor with the Licensed Material:
i. identification of the creator(s) of the Licensed Material and any others designated to receive attribution, in any reasonable manner requested by the Licensor (including by pseudonym if designated);
ii. a copyright notice;
iii. a notice that refers to this Public License;
iv. a notice that refers to the disclaimer of warranties;
v. a URI or hyperlink to the Licensed Material to the extent reasonably practicable;
B. indicate if You modified the Licensed Material and retain an indication of any previous modifications; and
C. indicate the Licensed Material is licensed under this Public License, and include the text of, or the URI or hyperlink to, this Public License.
2. You may satisfy the conditions in Section 3(a)(1) in any reasonable manner based on the medium, means, and context in which You Share the Licensed Material. For example, it may be reasonable to satisfy the conditions by providing a URI or hyperlink to a resource that includes the required information.
3. If requested by the Licensor, You must remove any of the information required by Section 3(a)(1)(A) to the extent reasonably practicable.
b. **_ShareAlike._**
In addition to the conditions in Section 3(a), if You Share Adapted Material You produce, the following conditions also apply.
1. The Adapters License You apply must be a Creative Commons license with the same License Elements, this version or later, or a BY-SA Compatible License.
2. You must include the text of, or the URI or hyperlink to, the Adapter's License You apply. You may satisfy this condition in any reasonable manner based on the medium, means, and context in which You Share Adapted Material.
3. You may not offer or impose any additional or different terms or conditions on, or apply any Effective Technological Measures to, Adapted Material that restrict exercise of the rights granted under the Adapter's License You apply.
### Section 4 Sui Generis Database Rights.
Where the Licensed Rights include Sui Generis Database Rights that apply to Your use of the Licensed Material:
a. for the avoidance of doubt, Section 2(a)(1) grants You the right to extract, reuse, reproduce, and Share all or a substantial portion of the contents of the database;
b. if You include all or a substantial portion of the database contents in a database in which You have Sui Generis Database Rights, then the database in which You have Sui Generis Database Rights (but not its individual contents) is Adapted Material, including for purposes of Section 3(b); and
c. You must comply with the conditions in Section 3(a) if You Share all or a substantial portion of the contents of the database.
For the avoidance of doubt, this Section 4 supplements and does not replace Your obligations under this Public License where the Licensed Rights include other Copyright and Similar Rights.
### Section 5 Disclaimer of Warranties and Limitation of Liability.
a. **Unless otherwise separately undertaken by the Licensor, to the extent possible, the Licensor offers the Licensed Material as-is and as-available, and makes no representations or warranties of any kind concerning the Licensed Material, whether express, implied, statutory, or other. This includes, without limitation, warranties of title, merchantability, fitness for a particular purpose, non-infringement, absence of latent or other defects, accuracy, or the presence or absence of errors, whether or not known or discoverable. Where disclaimers of warranties are not allowed in full or in part, this disclaimer may not apply to You.**
b. **To the extent possible, in no event will the Licensor be liable to You on any legal theory (including, without limitation, negligence) or otherwise for any direct, special, indirect, incidental, consequential, punitive, exemplary, or other losses, costs, expenses, or damages arising out of this Public License or use of the Licensed Material, even if the Licensor has been advised of the possibility of such losses, costs, expenses, or damages. Where a limitation of liability is not allowed in full or in part, this limitation may not apply to You.**
c. The disclaimer of warranties and limitation of liability provided above shall be interpreted in a manner that, to the extent possible, most closely approximates an absolute disclaimer and waiver of all liability.
### Section 6 Term and Termination.
a. This Public License applies for the term of the Copyright and Similar Rights licensed here. However, if You fail to comply with this Public License, then Your rights under this Public License terminate automatically.
b. Where Your right to use the Licensed Material has terminated under Section 6(a), it reinstates:
1. automatically as of the date the violation is cured, provided it is cured within 30 days of Your discovery of the violation; or
2. upon express reinstatement by the Licensor.
For the avoidance of doubt, this Section 6(b) does not affect any right the Licensor may have to seek remedies for Your violations of this Public License.
c. For the avoidance of doubt, the Licensor may also offer the Licensed Material under separate terms or conditions or stop distributing the Licensed Material at any time; however, doing so will not terminate this Public License.
d. Sections 1, 5, 6, 7, and 8 survive termination of this Public License.
### Section 7 Other Terms and Conditions.
a. The Licensor shall not be bound by any additional or different terms or conditions communicated by You unless expressly agreed.
b. Any arrangements, understandings, or agreements regarding the Licensed Material not stated herein are separate from and independent of the terms and conditions of this Public License.
### Section 8 Interpretation.
a. For the avoidance of doubt, this Public License does not, and shall not be interpreted to, reduce, limit, restrict, or impose conditions on any use of the Licensed Material that could lawfully be made without permission under this Public License.
b. To the extent possible, if any provision of this Public License is deemed unenforceable, it shall be automatically reformed to the minimum extent necessary to make it enforceable. If the provision cannot be reformed, it shall be severed from this Public License without affecting the enforceability of the remaining terms and conditions.
c. No term or condition of this Public License will be waived and no failure to comply consented to unless expressly agreed to by the Licensor.
d. Nothing in this Public License constitutes or may be interpreted as a limitation upon, or waiver of, any privileges and immunities that apply to the Licensor or You, including from the legal processes of any jurisdiction or authority.
> Creative Commons is not a party to its public licenses. Notwithstanding, Creative Commons may elect to apply one of its public licenses to material it publishes and in those instances will be considered the “Licensor.” The text of the Creative Commons public licenses is dedicated to the public domain under the [CC0 Public Domain Dedication](https://creativecommons.org/publicdomain/zero/1.0/legalcode). Except for the limited purpose of indicating that material is shared under a Creative Commons public license or as otherwise permitted by the Creative Commons policies published at [creativecommons.org/policies](http://creativecommons.org/policies), Creative Commons does not authorize the use of the trademark “Creative Commons” or any other trademark or logo of Creative Commons without its prior written consent including, without limitation, in connection with any unauthorized modifications to any of its public licenses or any other arrangements, understandings, or agreements concerning use of licensed material. For the avoidance of doubt, this paragraph does not form part of the public licenses.
>
> Creative Commons may be contacted at [creativecommons.org](http://creativecommons.org/).

View File

@ -0,0 +1,43 @@
_To the extent possible under law, [Eric Woodward](https://www.itsericwoodward.com/) has waived all copyright and related or neighboring rights to this work, which is published from: United States._
CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS DOCUMENT DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS PROVIDED HEREUNDER, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS PROVIDED HEREUNDER.
### Statement of Purpose
The laws of most jurisdictions throughout the world automatically confer exclusive Copyright and Related Rights (defined below) upon the creator and subsequent owner(s) (each and all, an "owner") of an original work of authorship and/or a database (each, a "Work").
Certain owners wish to permanently relinquish those rights to a Work for the purpose of contributing to a commons of creative, cultural and scientific works ("Commons") that the public can reliably and without fear of later claims of infringement build upon, modify, incorporate in other works, reuse and redistribute as freely as possible in any form whatsoever and for any purposes, including without limitation commercial purposes. These owners may contribute to the Commons to promote the ideal of a free culture and the further production of creative, cultural and scientific works, or to gain reputation or greater distribution for their Work in part through the use and efforts of others.
For these and/or other purposes and motivations, and without any expectation of additional consideration or compensation, the person associating CC0 with a Work (the "Affirmer"), to the extent that he or she is an owner of Copyright and Related Rights in the Work, voluntarily elects to apply CC0 to the Work and publicly distribute the Work under its terms, with knowledge of his or her Copyright and Related Rights in the Work and the meaning and intended legal effect of CC0 on those rights.
1. **Copyright and Related Rights.** A Work made available under CC0 may be protected by copyright and related or neighboring rights ("Copyright and Related Rights"). Copyright and Related Rights include, but are not limited to, the following:
i. the right to reproduce, adapt, distribute, perform, display, communicate, and translate a Work;
ii. moral rights retained by the original author(s) and/or performer(s);
iii. publicity and privacy rights pertaining to a person's image or likeness depicted in a Work;
iv. rights protecting against unfair competition in regards to a Work, subject to the limitations in paragraph 4(a), below;
v. rights protecting the extraction, dissemination, use and reuse of data in a Work;
vi. database rights (such as those arising under Directive 96/9/EC of the European Parliament and of the Council of 11 March 1996 on the legal protection of databases, and under any national implementation thereof, including any amended or successor version of such directive); and
vii. other similar, equivalent or corresponding rights throughout the world based on applicable law or treaty, and any national implementations thereof.
2. **Waiver.** To the greatest extent permitted by, but not in contravention of, applicable law, Affirmer hereby overtly, fully, permanently, irrevocably and unconditionally waives, abandons, and surrenders all of Affirmer's Copyright and Related Rights and associated claims and causes of action, whether now known or unknown (including existing as well as future claims and causes of action), in the Work (i) in all territories worldwide, (ii) for the maximum duration provided by applicable law or treaty (including future time extensions), (iii) in any current or future medium and for any number of copies, and (iv) for any purpose whatsoever, including without limitation commercial, advertising or promotional purposes (the "Waiver"). Affirmer makes the Waiver for the benefit of each member of the public at large and to the detriment of Affirmer's heirs and successors, fully intending that such Waiver shall not be subject to revocation, rescission, cancellation, termination, or any other legal or equitable action to disrupt the quiet enjoyment of the Work by the public as contemplated by Affirmer's express Statement of Purpose.
3. **Public License Fallback.** Should any part of the Waiver for any reason be judged legally invalid or ineffective under applicable law, then the Waiver shall be preserved to the maximum extent permitted taking into account Affirmer's express Statement of Purpose. In addition, to the extent the Waiver is so judged Affirmer hereby grants to each affected person a royalty-free, non transferable, non sublicensable, non exclusive, irrevocable and unconditional license to exercise Affirmer's Copyright and Related Rights in the Work (i) in all territories worldwide, (ii) for the maximum duration provided by applicable law or treaty (including future time extensions), (iii) in any current or future medium and for any number of copies, and (iv) for any purpose whatsoever, including without limitation commercial, advertising or promotional purposes (the "License"). The License shall be deemed effective as of the date CC0 was applied by Affirmer to the Work. Should any part of the License for any reason be judged legally invalid or ineffective under applicable law, such partial invalidity or ineffectiveness shall not invalidate the remainder of the License, and in such case Affirmer hereby affirms that he or she will not (i) exercise any of his or her remaining Copyright and Related Rights in the Work or (ii) assert any associated claims and causes of action with respect to the Work, in either case contrary to Affirmer's express Statement of Purpose.
4. **Limitations and Disclaimers.**
a. No trademark or patent rights held by Affirmer are waived, abandoned, surrendered, licensed or otherwise affected by this document.
b. Affirmer offers the Work as-is and makes no representations or warranties of any kind concerning the Work, express, implied, statutory or otherwise, including without limitation warranties of title, merchantability, fitness for a particular purpose, non infringement, or the absence of latent or other defects, accuracy, or the present or absence of errors, whether or not discoverable, all to the greatest extent permissible under applicable law.
c. Affirmer disclaims responsibility for clearing rights of other persons that may apply to the Work or any use thereof, including without limitation any person's Copyright and Related Rights in the Work. Further, Affirmer disclaims responsibility for obtaining any necessary consents, permissions or other rights required for any use of the Work.
d. Affirmer understands and acknowledges that Creative Commons is not a party to this document and has no duty or obligation with respect to this CC0 or use of the Work.
<pre class="magnetLink">@license magnet:?xt=urn:btih:90dc5c0be029de84e523b9b3922520e79e0e6f08&dn=cc0.txt CC0-1.0</pre>

View File

@ -1,5 +1,5 @@
<div class="todayWrapper">
As of last session, it is **near the middle of the 2nd shift of the 1st phase of 14th day <!--3rd Aerday --> Urtson-Nu, in year 5023 of the Common Astral Calendar**.
As of last session, it is **near the middle of the 1st shift of the 2nd phase of 14th day <!--3rd Aerday --> Urtson-Nu, in year 5023 of the Common Astral Calendar**.
</div>

View File

@ -2,9 +2,9 @@
/****************************************************************************
* Planar Vagabond's Guide to the Multiverse (planarvagabond.com)
*
* Copyright 2023 Eric Woodward
* Copyright 2023-2024 Eric Woodward
* Source released under CC0 Public Domain License v1.0
* https://www.itsericwoodward.com/licenses/cc0
* https://www.planarvagabond.com/licenses/cc0/
* http://creativecommons.org/publicdomain/zero/1.0/
****************************************************************************/

View File

@ -3,7 +3,7 @@
*
* Copyright 2023 Eric Woodward
* Source released under CC0 Public Domain License v1.0
* https://www.itsericwoodward.com/licenses/cc0
* https://www.planarvagabond.com/licenses/cc0/
* http://creativecommons.org/publicdomain/zero/1.0/
****************************************************************************/

View File

@ -3,7 +3,7 @@
*
* Copyright 2023 Eric Woodward
* Source released under CC0 Public Domain License v1.0
* https://www.itsericwoodward.com/licenses/cc0
* https://www.planarvagabond.com/licenses/cc0/
* http://creativecommons.org/publicdomain/zero/1.0/
****************************************************************************/

File diff suppressed because it is too large Load Diff

View File

@ -26,9 +26,9 @@ unlistedSections = ['main'];
&lt; Back to <%= titlesBySection[page.subsection] ?? page.subsection.charAt(0).toUpperCase() + page.subsection.slice(1) %>
</a>
</div>
<% } else if (page.section && page.section === 'licenses') { -%>
<% } else if (page.section && page.section === 'licenses' && page.path && !page.path.endsWith(`${page.section}/index.html`)) { -%>
<p>
The latest version of this license can always be found at <a href="<%=site.url%>/<%=page.path%>"><%=site.url%>/<%=page.path%></a>.
The latest version of this license can always be found at <a href="/<%=page.path%>"><%=site.uri%>/<%=page.path.replace('/index.html', '/')%></a>.
</p>
<% } else if (page.section && !unlistedSections.includes(page.section) && page.path && !page.path.endsWith(`${page.section}/index.html`)) { -%>

View File

@ -45,7 +45,7 @@
both used under the SIL Open Font License, Version 1.1.
</p>
<p>
Background image created with <a href="https://labs.openai.com/" target="_blank">DALL-E</a> released under a <a href="/licenses/cc0">CC0</a> license.
Background image created with <a href="https://labs.openai.com/" target="_blank">DALL-E</a> released under a <a href="/licenses/cc0/">CC0</a> license.
</p>
<a href="#top" class="topLink">Back to Top</a>
</div>

View File

@ -138,6 +138,21 @@ During each round of pursuit or combat, PCs occupying these roles may attempt to
- **Lyffan ships**: Always carry a Bombard as one of their weapons
<!-- - **Stral ships**: -->
### Upgrades
#### Hide Covering
The hide of one (or more) animals is spread out across the hull.
- Grants an AC bonus if the animal in question has better AC than the ship.
- For every 2 difference in AC, the ship gets +1.
**Cost**: Varies by bonus.
- **+1** costs 20% of capacity in gp.
- **+2** costs 40% of capacity in gp.
- **+3** costs 80% of capacity in gp.
### Weapons
#### Ballistae

View File

@ -7,7 +7,7 @@ content_type: feature
short_code: cba
---
An adventurer know for their primitive warrior nature.
An adventurer known for their "primal" warrior nature.
<div class='headlessTableWrapper'>
@ -25,7 +25,7 @@ An adventurer know for their primitive warrior nature.
### Agile Fighter
Gain a bonus to AC, and damage based on level as shown in [Level Advancement Table](#advancement).
Gain a bonus to AC and damage based on level as shown in [Level Advancement Table](#advancement).
- After 4th level, able to deal damage to creatures that are immune to non-magical attacks.
@ -57,6 +57,31 @@ Gain a bonus to AC, and damage based on level as shown in [Level Advancement Tab
</div>
<!--
<div class="dividedTableWrapper">
| Level | CS (d%) | HU (d20) | MS (d20) |
| :---: | :-----: | :------: | :------: |
| 1 | 87 | 16 | 16 |
| 2 | 88 | 15 | 15 |
| 3 | 89 | 14 | 14 |
| 4 | 90 | 13 | 13 |
| 5 | 91 | 12 | 12 |
| 6 | 92 | 11 | 11 |
| 7 | 93 | 9 | 9 |
| 8 | 94 | 7 | 7 |
| 9 | 95 | 5 | 5 |
| 10 | 96 | 3 | 3 |
| 11 | 97 | 1 | 1 |
| 12 | 98 | 97 | 97 |
| 13 | 99 | 98 | 98 |
| 14 | 99 | 99 | 99 |
[Barbarian Skills Chance of Success]
</div>
-->
- **Climb sheer surfaces (CS)**: Roll for every 100' climbed, failure means falling from the halfway point (and taking fall damage).
- **Hide in undergrowth (HU)**: Must stand still, can't be done while attacking or moving.
- **Move silently (MS)**: Sneak past enemies unnoticed.
@ -64,7 +89,7 @@ Gain a bonus to AC, and damage based on level as shown in [Level Advancement Tab
### Distrust of Magic
- Most feel arcane magic is "wrong".
- Usually more accepting so tribal ritual and/or divine magic.
- Usually more accepting of tribal ritual and/or divine magic.
### Stronghold

View File

@ -33,9 +33,52 @@ An arcane magic user with an innate knowledge of certain spells and wild magical
- Can conduct magical research.
- [Arcane Spell List](./arcane-spellcasters/known-arcane-spells.html)
### Sorcery Points
- Begins each day with a number of sorcery points equal to level.
### Flexible Casting
- Spend 1 sorcery point per level to cast a copy of a memorized spell.
- Allows spell to be cast without removing from memory.
- Can only be used once per combat round.
### Metamagic
Pick one at 2nd, 5th, 9th, and 14th level.
- **Blasted Spell**: When casting a spell that deals damage to a creature, spend 1 sorcery point to push up to one of the spell's targets 10 feet away from you.
- **Careful Spell**: When casting a spell that forces other creatures to make a saving throw, spend 1 sorcery point and choose up to 1d6 creatures to automatically succeed.
- **Distant Spell**: Spend 1 sorcery point to double the range of target spell or increase the range of that spell from "touch" to 30 feet.
- **Empowered Spell**[^1]: After rolling damage for target spell, spend 1 sorcery point to reroll up to 1d6 damage dice (new rolls must be used).
- **Heightened Spell**: When casting a spell forces a creature to make a saving throw, spend 3 sorcery points to give one target of that spell disadvantage on its first saving throw made against the spell.
- **Prolonged Spell**: Spend 1 sorcery point to double the duration of target spell with a duration of 1 minute or longer (24 hour maximum duration).
- **Quickened Spell**: When casting a spell with a casting time of 1 combat action, spend 2 sorcery points to change the casting time to 1 second for this casting.
- **Reverberating Spell**: When casting a damaging spell with a duration of "instant", spend a number of sorcery points equal to the spell's level to automatically duplicate the effects of that spell during the next round.
- **Subtle Spell**: When casting a spell, spend 1 sorcery point to cast it stealthily (without any somatic or verbal components).
- **Twinned Spell**: When casting a spell that targets only one creature and doesnt have a range of "self", spend a number of sorcery points equal to the spells level to target a second creature in range with the same spell.
[^1] Can be used in addition to other Metamagic options on the same spell.
### Chaos
- May invoke chaos before casting a spell to roll on table below:
- May invoke chaos before casting a spell to roll 1d20 + INT bonus on table below:
| 1d20 | Result |
| :---: | :-------: |
| 1 | Mishap |
| 2-6 | Failure |
| 7-15 | Success |
| 16-19 | Excellent |
| 20+ | Perfect |
- **Mishap**: Spell fizzles and is expended, 1% chance of Disaster per spell level, -2 next time you invoke chaos.
- **Failure**: Spell fizzles but is not expended.
- **Success**: Spell works as normal.
- **Excellent**: Succeeds in notable manner as determined by referee (double duration, range, targets, etc.)
- **Perfect**: Succeeds as well as possible (player chooses up to two effects from Excellent, possibly without expending spell), +2 next time you invoke chaos.
#### Disaster
### Stronghold

View File

@ -2,7 +2,6 @@
title: Feare Naught!
description: Welcome to the digital representation of the one and only Planar Vagabond's Guide to the Multiverse!
date_pub: 2023-02-15T00:26:00-05:00
date_upd: 2023-03-18T15:03:00-04:00
section: main
content_type: feature
---
@ -11,7 +10,7 @@ For you've stumbled onto the digital representation of the most famous multivers
Within its hallowed pages, you'll find everything you need to know about the [various planes of the multiverse](/planes/index.html) and (more importantly) how to tour those planes on less than 5 silver coins a day!
If this is your first time here, you may want to see what it's all about, or you can start using the guide to learn how to get around on [the astral plan](/astral/index.html), the [character classes](/classes/index.html) and [races](/races/index.html) you can meet along the way, and some of the [magic items](/magic-items/index.html), [bestiary](/bestiary/index.html), and [weapons](/weapons/) you may encounter.
If this is your first time here, you may want to see what it's all about, or you can start using the guide to learn how to get around on [the astral plane](/astral/index.html), the [character classes](/classes/index.html) and [races](/races/index.html) you can meet along the way, and some of the [magic items](/magic-items/index.html), [creatures](/bestiary/index.html), and [weapons](/weapons/) you may encounter.
Thanks for stopping by!

View File

@ -4,165 +4,7 @@ description: A local copy of the Creative Commons Attribution-ShareAlike 4.0 Int
date_pub: 2023-03-19T00:55:00-04:00
section: licenses
content_type: feature
short_code: lcc0
status: hidden
---
Copyright &copy; 2023 [Eric Woodward](https://www.itsericwoodward.com/)
By exercising the Licensed Rights (defined below), You accept and agree to be bound by the terms and conditions of this Creative Commons Attribution-ShareAlike 4.0 International Public License ("Public License"). To the extent this Public License may be interpreted as a contract, You are granted the Licensed Rights in consideration of Your acceptance of these terms and conditions, and the Licensor grants You such rights in consideration of benefits the Licensor receives from making the Licensed Material available under these terms and conditions.
### Section 1 Definitions.
a. **Adapted Material** means material subject to Copyright and Similar Rights that is derived from or based upon the Licensed Material and in which the Licensed Material is translated, altered, arranged, transformed, or otherwise modified in a manner requiring permission under the Copyright and Similar Rights held by the Licensor. For purposes of this Public License, where the Licensed Material is a musical work, performance, or sound recording, Adapted Material is always produced where the Licensed Material is synched in timed relation with a moving image.
b. **Adapter's License** means the license You apply to Your Copyright and Similar Rights in Your contributions to Adapted Material in accordance with the terms and conditions of this Public License.
c. **BY-SA Compatible License** means a license listed at [creativecommons.org/compatiblelicenses](http://creativecommons.org/compatiblelicenses), approved by Creative Commons as essentially the equivalent of this Public License.
d. **Copyright and Similar Rights** means copyright and/or similar rights closely related to copyright including, without limitation, performance, broadcast, sound recording, and Sui Generis Database Rights, without regard to how the rights are labeled or categorized. For purposes of this Public License, the rights specified in Section 2(b)(1)-(2) are not Copyright and Similar Rights.
e. **Effective Technological Measures** means those measures that, in the absence of proper authority, may not be circumvented under laws fulfilling obligations under Article 11 of the WIPO Copyright Treaty adopted on December 20, 1996, and/or similar international agreements.
f. **Exceptions and Limitations** means fair use, fair dealing, and/or any other exception or limitation to Copyright and Similar Rights that applies to Your use of the Licensed Material.
g. **License Elements** means the license attributes listed in the name of a Creative Commons Public License. The License Elements of this Public License are Attribution and ShareAlike.
h. **Licensed Material** means the artistic or literary work, database, or other material to which the Licensor applied this Public License.
i. **Licensed Rights** means the rights granted to You subject to the terms and conditions of this Public License, which are limited to all Copyright and Similar Rights that apply to Your use of the Licensed Material and that the Licensor has authority to license.
j. **Licensor** means the individual(s) or entity(ies) granting rights under this Public License.
k. **Share** means to provide material to the public by any means or process that requires permission under the Licensed Rights, such as reproduction, public display, public performance, distribution, dissemination, communication, or importation, and to make material available to the public including in ways that members of the public may access the material from a place and at a time individually chosen by them.
l. **Sui Generis Database Rights** means rights other than copyright resulting from Directive 96/9/EC of the European Parliament and of the Council of 11 March 1996 on the legal protection of databases, as amended and/or succeeded, as well as other essentially equivalent rights anywhere in the world.
m. **You** means the individual or entity exercising the Licensed Rights under this Public License. **Your** has a corresponding meaning.
### Section 2 Scope.
a. **_License grant._**
1. Subject to the terms and conditions of this Public License, the Licensor hereby grants You a worldwide, royalty-free, non-sublicensable, non-exclusive, irrevocable license to exercise the Licensed Rights in the Licensed Material to:
A. reproduce and Share the Licensed Material, in whole or in part; and
B. produce, reproduce, and Share Adapted Material.
2. **Exceptions and Limitations.** For the avoidance of doubt, where Exceptions and Limitations apply to Your use, this Public License does not apply, and You do not need to comply with its terms and conditions.
3. **Term.** The term of this Public License is specified in Section 6(a).
4. **Media and formats; technical modifications allowed.** The Licensor authorizes You to exercise the Licensed Rights in all media and formats whether now known or hereafter created, and to make technical modifications necessary to do so. The Licensor waives and/or agrees not to assert any right or authority to forbid You from making technical modifications necessary to exercise the Licensed Rights, including technical modifications necessary to circumvent Effective Technological Measures. For purposes of this Public License, simply making modifications authorized by this Section 2(a)(4) never produces Adapted Material.
5. **Downstream recipients.**
A. **Offer from the Licensor Licensed Material.** Every recipient of the Licensed Material automatically receives an offer from the Licensor to exercise the Licensed Rights under the terms and conditions of this Public License.
B. **Additional offer from the Licensor Adapted Material.** Every recipient of Adapted Material from You automatically receives an offer from the Licensor to exercise the Licensed Rights in the Adapted Material under the conditions of the Adapters License You apply.
C. **No downstream restrictions.** You may not offer or impose any additional or different terms or conditions on, or apply any Effective Technological Measures to, the Licensed Material if doing so restricts exercise of the Licensed Rights by any recipient of the Licensed Material.
6. **No endorsement.** Nothing in this Public License constitutes or may be construed as permission to assert or imply that You are, or that Your use of the Licensed Material is, connected with, or sponsored, endorsed, or granted official status by, the Licensor or others designated to receive attribution as provided in Section 3(a)(1)(A)(i).
b. **_Other rights._**
1. Moral rights, such as the right of integrity, are not licensed under this Public License, nor are publicity, privacy, and/or other similar personality rights; however, to the extent possible, the Licensor waives and/or agrees not to assert any such rights held by the Licensor to the limited extent necessary to allow You to exercise the Licensed Rights, but not otherwise.
2. Patent and trademark rights are not licensed under this Public License.
3. To the extent possible, the Licensor waives any right to collect royalties from You for the exercise of the Licensed Rights, whether directly or through a collecting society under any voluntary or waivable statutory or compulsory licensing scheme. In all other cases the Licensor expressly reserves any right to collect such royalties.
### Section 3 License Conditions.
Your exercise of the Licensed Rights is expressly made subject to the following conditions.
a. **_Attribution._**
1. If You Share the Licensed Material (including in modified form), You must:
A. retain the following if it is supplied by the Licensor with the Licensed Material:
i. identification of the creator(s) of the Licensed Material and any others designated to receive attribution, in any reasonable manner requested by the Licensor (including by pseudonym if designated);
ii. a copyright notice;
iii. a notice that refers to this Public License;
iv. a notice that refers to the disclaimer of warranties;
v. a URI or hyperlink to the Licensed Material to the extent reasonably practicable;
B. indicate if You modified the Licensed Material and retain an indication of any previous modifications; and
C. indicate the Licensed Material is licensed under this Public License, and include the text of, or the URI or hyperlink to, this Public License.
2. You may satisfy the conditions in Section 3(a)(1) in any reasonable manner based on the medium, means, and context in which You Share the Licensed Material. For example, it may be reasonable to satisfy the conditions by providing a URI or hyperlink to a resource that includes the required information.
3. If requested by the Licensor, You must remove any of the information required by Section 3(a)(1)(A) to the extent reasonably practicable.
b. **_ShareAlike._**
In addition to the conditions in Section 3(a), if You Share Adapted Material You produce, the following conditions also apply.
1. The Adapters License You apply must be a Creative Commons license with the same License Elements, this version or later, or a BY-SA Compatible License.
2. You must include the text of, or the URI or hyperlink to, the Adapter's License You apply. You may satisfy this condition in any reasonable manner based on the medium, means, and context in which You Share Adapted Material.
3. You may not offer or impose any additional or different terms or conditions on, or apply any Effective Technological Measures to, Adapted Material that restrict exercise of the rights granted under the Adapter's License You apply.
### Section 4 Sui Generis Database Rights.
Where the Licensed Rights include Sui Generis Database Rights that apply to Your use of the Licensed Material:
a. for the avoidance of doubt, Section 2(a)(1) grants You the right to extract, reuse, reproduce, and Share all or a substantial portion of the contents of the database;
b. if You include all or a substantial portion of the database contents in a database in which You have Sui Generis Database Rights, then the database in which You have Sui Generis Database Rights (but not its individual contents) is Adapted Material, including for purposes of Section 3(b); and
c. You must comply with the conditions in Section 3(a) if You Share all or a substantial portion of the contents of the database.
For the avoidance of doubt, this Section 4 supplements and does not replace Your obligations under this Public License where the Licensed Rights include other Copyright and Similar Rights.
### Section 5 Disclaimer of Warranties and Limitation of Liability.
a. **Unless otherwise separately undertaken by the Licensor, to the extent possible, the Licensor offers the Licensed Material as-is and as-available, and makes no representations or warranties of any kind concerning the Licensed Material, whether express, implied, statutory, or other. This includes, without limitation, warranties of title, merchantability, fitness for a particular purpose, non-infringement, absence of latent or other defects, accuracy, or the presence or absence of errors, whether or not known or discoverable. Where disclaimers of warranties are not allowed in full or in part, this disclaimer may not apply to You.**
b. **To the extent possible, in no event will the Licensor be liable to You on any legal theory (including, without limitation, negligence) or otherwise for any direct, special, indirect, incidental, consequential, punitive, exemplary, or other losses, costs, expenses, or damages arising out of this Public License or use of the Licensed Material, even if the Licensor has been advised of the possibility of such losses, costs, expenses, or damages. Where a limitation of liability is not allowed in full or in part, this limitation may not apply to You.**
c. The disclaimer of warranties and limitation of liability provided above shall be interpreted in a manner that, to the extent possible, most closely approximates an absolute disclaimer and waiver of all liability.
### Section 6 Term and Termination.
a. This Public License applies for the term of the Copyright and Similar Rights licensed here. However, if You fail to comply with this Public License, then Your rights under this Public License terminate automatically.
b. Where Your right to use the Licensed Material has terminated under Section 6(a), it reinstates:
1. automatically as of the date the violation is cured, provided it is cured within 30 days of Your discovery of the violation; or
2. upon express reinstatement by the Licensor.
For the avoidance of doubt, this Section 6(b) does not affect any right the Licensor may have to seek remedies for Your violations of this Public License.
c. For the avoidance of doubt, the Licensor may also offer the Licensed Material under separate terms or conditions or stop distributing the Licensed Material at any time; however, doing so will not terminate this Public License.
d. Sections 1, 5, 6, 7, and 8 survive termination of this Public License.
### Section 7 Other Terms and Conditions.
a. The Licensor shall not be bound by any additional or different terms or conditions communicated by You unless expressly agreed.
b. Any arrangements, understandings, or agreements regarding the Licensed Material not stated herein are separate from and independent of the terms and conditions of this Public License.
### Section 8 Interpretation.
a. For the avoidance of doubt, this Public License does not, and shall not be interpreted to, reduce, limit, restrict, or impose conditions on any use of the Licensed Material that could lawfully be made without permission under this Public License.
b. To the extent possible, if any provision of this Public License is deemed unenforceable, it shall be automatically reformed to the minimum extent necessary to make it enforceable. If the provision cannot be reformed, it shall be severed from this Public License without affecting the enforceability of the remaining terms and conditions.
c. No term or condition of this Public License will be waived and no failure to comply consented to unless expressly agreed to by the Licensor.
d. Nothing in this Public License constitutes or may be interpreted as a limitation upon, or waiver of, any privileges and immunities that apply to the Licensor or You, including from the legal processes of any jurisdiction or authority.
> Creative Commons is not a party to its public licenses. Notwithstanding, Creative Commons may elect to apply one of its public licenses to material it publishes and in those instances will be considered the “Licensor.” The text of the Creative Commons public licenses is dedicated to the public domain under the [CC0 Public Domain Dedication](https://creativecommons.org/publicdomain/zero/1.0/legalcode). Except for the limited purpose of indicating that material is shared under a Creative Commons public license or as otherwise permitted by the Creative Commons policies published at [creativecommons.org/policies](http://creativecommons.org/policies), Creative Commons does not authorize the use of the trademark “Creative Commons” or any other trademark or logo of Creative Commons without its prior written consent including, without limitation, in connection with any unauthorized modifications to any of its public licenses or any other arrangements, understandings, or agreements concerning use of licensed material. For the avoidance of doubt, this paragraph does not form part of the public licenses.
>
> Creative Commons may be contacted at [creativecommons.org](http://creativecommons.org/).
!!!include(license/cc-by-sa.md)!!!

View File

@ -0,0 +1,10 @@
---
title: Creative Commons Attribution-ShareAlike 4.0 International
description: A local copy of the Creative Commons Attribution-ShareAlike 4.0 International license.
date_pub: 2023-03-19T00:55:00-04:00
section: licenses
content_type: feature
short_code: 1ccbs
---
!!!include(license/cc-by-sa.md)!!!

View File

@ -4,47 +4,7 @@ description: A local copy of the Creative Commons CC0 1.0 Universal license.
date_pub: 2023-03-18T17:19:00-04:00
section: licenses
content_type: feature
short_code: 1cc0
status: hidden
---
_To the extent possible under law, [Eric Woodward](https://www.itsericwoodward.com/) has waived all copyright and related or neighboring rights to this work, which is published from: United States._
CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS DOCUMENT DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS PROVIDED HEREUNDER, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS PROVIDED HEREUNDER.
### Statement of Purpose
The laws of most jurisdictions throughout the world automatically confer exclusive Copyright and Related Rights (defined below) upon the creator and subsequent owner(s) (each and all, an "owner") of an original work of authorship and/or a database (each, a "Work").
Certain owners wish to permanently relinquish those rights to a Work for the purpose of contributing to a commons of creative, cultural and scientific works ("Commons") that the public can reliably and without fear of later claims of infringement build upon, modify, incorporate in other works, reuse and redistribute as freely as possible in any form whatsoever and for any purposes, including without limitation commercial purposes. These owners may contribute to the Commons to promote the ideal of a free culture and the further production of creative, cultural and scientific works, or to gain reputation or greater distribution for their Work in part through the use and efforts of others.
For these and/or other purposes and motivations, and without any expectation of additional consideration or compensation, the person associating CC0 with a Work (the "Affirmer"), to the extent that he or she is an owner of Copyright and Related Rights in the Work, voluntarily elects to apply CC0 to the Work and publicly distribute the Work under its terms, with knowledge of his or her Copyright and Related Rights in the Work and the meaning and intended legal effect of CC0 on those rights.
1. **Copyright and Related Rights.** A Work made available under CC0 may be protected by copyright and related or neighboring rights ("Copyright and Related Rights"). Copyright and Related Rights include, but are not limited to, the following:
i. the right to reproduce, adapt, distribute, perform, display, communicate, and translate a Work;
ii. moral rights retained by the original author(s) and/or performer(s);
iii. publicity and privacy rights pertaining to a person's image or likeness depicted in a Work;
iv. rights protecting against unfair competition in regards to a Work, subject to the limitations in paragraph 4(a), below;
v. rights protecting the extraction, dissemination, use and reuse of data in a Work;
vi. database rights (such as those arising under Directive 96/9/EC of the European Parliament and of the Council of 11 March 1996 on the legal protection of databases, and under any national implementation thereof, including any amended or successor version of such directive); and
vii. other similar, equivalent or corresponding rights throughout the world based on applicable law or treaty, and any national implementations thereof.
2. **Waiver.** To the greatest extent permitted by, but not in contravention of, applicable law, Affirmer hereby overtly, fully, permanently, irrevocably and unconditionally waives, abandons, and surrenders all of Affirmer's Copyright and Related Rights and associated claims and causes of action, whether now known or unknown (including existing as well as future claims and causes of action), in the Work (i) in all territories worldwide, (ii) for the maximum duration provided by applicable law or treaty (including future time extensions), (iii) in any current or future medium and for any number of copies, and (iv) for any purpose whatsoever, including without limitation commercial, advertising or promotional purposes (the "Waiver"). Affirmer makes the Waiver for the benefit of each member of the public at large and to the detriment of Affirmer's heirs and successors, fully intending that such Waiver shall not be subject to revocation, rescission, cancellation, termination, or any other legal or equitable action to disrupt the quiet enjoyment of the Work by the public as contemplated by Affirmer's express Statement of Purpose.
3. **Public License Fallback.** Should any part of the Waiver for any reason be judged legally invalid or ineffective under applicable law, then the Waiver shall be preserved to the maximum extent permitted taking into account Affirmer's express Statement of Purpose. In addition, to the extent the Waiver is so judged Affirmer hereby grants to each affected person a royalty-free, non transferable, non sublicensable, non exclusive, irrevocable and unconditional license to exercise Affirmer's Copyright and Related Rights in the Work (i) in all territories worldwide, (ii) for the maximum duration provided by applicable law or treaty (including future time extensions), (iii) in any current or future medium and for any number of copies, and (iv) for any purpose whatsoever, including without limitation commercial, advertising or promotional purposes (the "License"). The License shall be deemed effective as of the date CC0 was applied by Affirmer to the Work. Should any part of the License for any reason be judged legally invalid or ineffective under applicable law, such partial invalidity or ineffectiveness shall not invalidate the remainder of the License, and in such case Affirmer hereby affirms that he or she will not (i) exercise any of his or her remaining Copyright and Related Rights in the Work or (ii) assert any associated claims and causes of action with respect to the Work, in either case contrary to Affirmer's express Statement of Purpose.
4. **Limitations and Disclaimers.**
a. No trademark or patent rights held by Affirmer are waived, abandoned, surrendered, licensed or otherwise affected by this document.
b. Affirmer offers the Work as-is and makes no representations or warranties of any kind concerning the Work, express, implied, statutory or otherwise, including without limitation warranties of title, merchantability, fitness for a particular purpose, non infringement, or the absence of latent or other defects, accuracy, or the present or absence of errors, whether or not discoverable, all to the greatest extent permissible under applicable law.
c. Affirmer disclaims responsibility for clearing rights of other persons that may apply to the Work or any use thereof, including without limitation any person's Copyright and Related Rights in the Work. Further, Affirmer disclaims responsibility for obtaining any necessary consents, permissions or other rights required for any use of the Work.
d. Affirmer understands and acknowledges that Creative Commons is not a party to this document and has no duty or obligation with respect to this CC0 or use of the Work.
!!!include(license/cc0.md)!!!

View File

@ -0,0 +1,10 @@
---
title: Creative Commons CC0 1.0 Universal
description: A local copy of the Creative Commons CC0 1.0 Universal license.
date_pub: 2023-03-18T17:19:00-04:00
section: licenses
content_type: feature
short_code: 1cc0
---
!!!include(license/cc0.md)!!!

View File

@ -2,12 +2,12 @@
title: Licenses
description: The licenses for the content on this site.
date_pub: 2023-04-26T22:30:00-04:00
section: license
section: licenses
content_type: feature
short_code: "11"
short_code: 1c
---
The following licenses are used on this site:
- [Creative Commons Attribution-ShareAlike 4.0 International (CC-BY-SA)](./cc-by-sa.html)
- [Creative Commons CC0 1.0 Universal](cc0.html)
- [Creative Commons Attribution-ShareAlike 4.0 International (CC-BY-SA)](cc-by-sa/)
- [Creative Commons CC0 1.0 Universal](cc0/)

View File

@ -10,7 +10,7 @@ short_code: mac
<div class="imgWrapper">
![An astral compass, created with [Stable Diffusion Online](https://stablediffusionweb.com/), released under a [CC0](/licenses/cc0) license.](/images/magic-items/astral-compass.jpg "An astral compass")
![An astral compass, created with [Stable Diffusion Online](https://stablediffusionweb.com/), released under a [CC0](/licenses/cc0/) license.](/images/magic-items/astral-compass.jpg 'An astral compass')
</div>

View File

View File

@ -10,7 +10,7 @@ status: hidden
<div class="imgWrapper">
![A booster ring, created with [Dall-E](https://labs.openai.com/), released under a [CC0](/licenses/cc0) license.](/images/magic-items/booster-ring.jpg 'A booster ring')
![A booster ring, created with [Dall-E](https://labs.openai.com/), released under a [CC0](/licenses/cc0/) license.](/images/magic-items/booster-ring.jpg 'A booster ring')
</div>

View File

@ -9,7 +9,7 @@ short_code: mc1b
<div class="imgWrapper">
![A chamber of lightning bolts, created with [Stable Diffusion Online](https://stablediffusionweb.com/), released under a [CC0](/licenses/cc0) license.](/images/magic-items/chamber-of-lightning-bolts.jpg 'A chamber of lightning bolts')
![A chamber of lightning bolts, created with [Stable Diffusion Online](https://stablediffusionweb.com/), released under a [CC0](/licenses/cc0/) license.](/images/magic-items/chamber-of-lightning-bolts.jpg 'A chamber of lightning bolts')
</div>

View File

@ -9,7 +9,7 @@ short_code: mcsj
<div class="imgWrapper">
![The Crystal Skull of Jund, created with [Stable Diffusion Online](https://stablediffusionweb.com/), released under a [CC0](/licenses/cc0) license.](/images/magic-items/crystal-skull-of-jund.jpg 'The Crystal Skull of Jund')
![The Crystal Skull of Jund, created with [Stable Diffusion Online](https://stablediffusionweb.com/), released under a [CC0](/licenses/cc0/) license.](/images/magic-items/crystal-skull-of-jund.jpg 'The Crystal Skull of Jund')
</div>

View File

@ -10,7 +10,7 @@ short_code: mhoh
<div class="imgWrapper">
![A Helm of Immaculate Conservation, created with [Stable Diffusion Online](https://stablediffusionweb.com/), released under a [CC0](/licenses/cc0) license.](/images/magic-items/helm-of-halos.jpg "A Helm of Immaculate Conservation")
![A Helm of Immaculate Conservation, created with [Stable Diffusion Online](https://stablediffusionweb.com/), released under a [CC0](/licenses/cc0/) license.](/images/magic-items/helm-of-halos.jpg 'A Helm of Immaculate Conservation')
</div>

View File

@ -9,9 +9,9 @@ short_code: mpr
<div class="imgWrapper">
![A pet rock, created with [Stable Diffusion Online](https://stablediffusionweb.com/), released under a [CC0](/licenses/cc0) license.](/images/magic-items/pet-rock-1.jpg "A pet rock")
![A pet rock, created with [Stable Diffusion Online](https://stablediffusionweb.com/), released under a [CC0](/licenses/cc0/) license.](/images/magic-items/pet-rock-1.jpg 'A pet rock')
![A pet rock, created with [Stable Diffusion Online](https://stablediffusionweb.com/), released under a [CC0](/licenses/cc0) license.](/images/magic-items/pet-rock-2.jpg "A pet rock")
![A pet rock, created with [Stable Diffusion Online](https://stablediffusionweb.com/), released under a [CC0](/licenses/cc0/) license.](/images/magic-items/pet-rock-2.jpg 'A pet rock')
</div>

View File

@ -0,0 +1,37 @@
---
title: Portable Hole
description:
date_pub: 2023-02-19T20:59:00-05:00
section: magic items
content_type: feature
short_code: mdh
status: draft
---
WAIT - I'd rather make this into a _genuine_ portable hole
- a piece of fabric 1' in diamater, can be "stretched" to 3' before shrinking back over the next hour.
- Once stretched and laid flat, opens an actual hole through up to 5' or 10' of solid matter
- the ability to just "crawl" through holes (even 1 at a time) would break most dungeons
- would also remove the need for lockpicking most chests
- I might do this later, but not now
---
A circle made of fine black cloth that can be used to access a pocket dimension.
- 6' in diameter
- Must be unfolded on or against a flat surface to access the pocket dimension.
- When unfolded, acts as a Sack of Storing.
- Pocket dimension is a cylinder, 6' in diameter and 10' deep.
This fine black cloth, soft as silk, is folded up to the dimensions of a handkerchief. It unfolds into a circular sheet 6 feet in diameter.
You can use an action to unfold a portable hole and place it on or against a solid surface, whereupon the portable hole creates an extradimensional hole 10 feet deep. The cylindrical space within the hole exists on a different plane, so it cant be used to create open passages. Any creature inside an open portable hole can exit the hole by climbing out of it.
You can use an action to close a portable hole by taking hold of the edges of the cloth and folding it up. Folding the cloth closes the hole, and any creatures or objects within remain in the extradimensional space. No matter whats in it, the hole weighs next to nothing.
If the hole is folded up, a creature within the holes extradimensional space can use an action to make a DC 10 Strength check. On a successful check, the creature forces its way out and appears within 5 feet of the portable hole or the creature carrying it. A breathing creature within a closed portable hole can survive for up to 10 minutes, after which time it begins to suffocate.
Placing a portable hole inside an extradimensional space created by a bag of holding, handy haversack, or similar item instantly destroys both items and opens a gate to the Astral Plane. The gate originates where the one item was placed inside the other. Any creature within 10 feet of the gate is sucked through it and deposited in a random location on the Astral Plane. The gate then closes. The gate is one-way only and cant be reopened.

View File

@ -10,7 +10,7 @@ short_code: mreb
<div class="imgWrapper">
![A ring of eldritch blasting, created with [Stable Diffusion Online](https://stablediffusionweb.com/), released under [CC0](/licenses/cc0) license.](/images/magic-items/ring-of-eldritch-blasting.jpg "A ring of eldritch blasting")
![A ring of eldritch blasting, created with [Stable Diffusion Online](https://stablediffusionweb.com/), released under [CC0](/licenses/cc0/) license.](/images/magic-items/ring-of-eldritch-blasting.jpg 'A ring of eldritch blasting')
</div>

View File

@ -9,7 +9,7 @@ short_code: mrops
<div class="imgWrapper">
![A ring of psychic shielding, created with [Stable Diffusion Online](https://stablediffusionweb.com/), released under a [CC0](/licenses/cc0) license.](/images/magic-items/ring-of-psychic-shielding.jpg 'A ring of psychic shielding')
![A ring of psychic shielding, created with [Stable Diffusion Online](https://stablediffusionweb.com/), released under a [CC0](/licenses/cc0/) license.](/images/magic-items/ring-of-psychic-shielding.jpg 'A ring of psychic shielding')
</div>

View File

@ -10,7 +10,7 @@ short_code: mrots
<div class="imgWrapper">
![A ring of the scholar, created with [Stable Diffusion Online](https://stablediffusionweb.com/), released under a [CC0](/licenses/cc0) license.](/images/magic-items/silver-ring-scholar.jpg "A ring of the scholar")
![A ring of the scholar, created with [Stable Diffusion Online](https://stablediffusionweb.com/), released under a [CC0](/licenses/cc0/) license.](/images/magic-items/silver-ring-scholar.jpg 'A ring of the scholar')
</div>

View File

@ -9,7 +9,7 @@ short_code: mtwh
<div class="imgWrapper">
![Tyrhung, Wolf Hunter, created with [Stable Diffusion Online](https://stablediffusionweb.com/), released under a [CC0](/licenses/cc0) license.](/images/magic-items/tyrhung.jpg 'Tyrhung, Wolf Hunter')
![Tyrhung, Wolf Hunter, created with [Stable Diffusion Online](https://stablediffusionweb.com/), released under a [CC0](/licenses/cc0/) license.](/images/magic-items/tyrhung.jpg 'Tyrhung, Wolf Hunter')
</div>

View File

@ -9,7 +9,7 @@ short_code: mwd
<div class="imgWrapper">
![A Wand of Druidcraft, created with both [Stable Diffusion Online](https://stablediffusionweb.com/) and [Dall-E](https://labs.openai.com/), released under a [CC0](/licenses/cc0) license.](/images/magic-items/wand-of-druidcraft.jpg 'A wand of druidcraft')
![A Wand of Druidcraft, created with both [Stable Diffusion Online](https://stablediffusionweb.com/) and [Dall-E](https://labs.openai.com/), released under a [CC0](/licenses/cc0/) license.](/images/magic-items/wand-of-druidcraft.jpg 'A wand of druidcraft')
</div>

View File

@ -9,7 +9,7 @@ short_code: mws
<div class="imgWrapper">
![A pair of whispering stones, created with [Dall-E](https://labs.openai.com/), released under a [CC0](/licenses/cc0) license.](/images/magic-items/whispering-stones.jpg 'A pair of whispering stones')
![A pair of whispering stones, created with [Dall-E](https://labs.openai.com/), released under a [CC0](/licenses/cc0/) license.](/images/magic-items/whispering-stones.jpg 'A pair of whispering stones')
</div>

View File

@ -9,7 +9,7 @@ short_code: nram
<div class="imgWrapper">
![Amylee Mouserel, created with [DALL-E](https://labs.openai.com/) and released under a [CC0](/licenses/cc0) license.](/images/rivertail/amylee-mouserel.jpg 'Amylee Mouserel')
![Amylee Mouserel, created with [DALL-E](https://labs.openai.com/) and released under a [CC0](/licenses/cc0/) license.](/images/rivertail/amylee-mouserel.jpg 'Amylee Mouserel')
</div>
@ -57,4 +57,4 @@ Where verses unfurl, gentle and demure.<br />
For in this enchanted realm, where secrets reside,<br />
I, a field mouse poet, find solace and abide.
_Created with [ChatGPT](https://chat.openai.com/) and released under a [CC0](/licenses/cc0) license._
_Created with [ChatGPT](https://chat.openai.com/) and released under a [CC0](/licenses/cc0/) license._

View File

@ -9,7 +9,7 @@ short_code: nrbb
<div class="imgWrapper">
![Benjen Beaverdere, created with [DALL-E](https://labs.openai.com/) and released under a [CC0](/licenses/cc0) license.](/images/rivertail/benjen-beaverdere.jpg 'Benjen Beaverdere')
![Benjen Beaverdere, created with [DALL-E](https://labs.openai.com/) and released under a [CC0](/licenses/cc0/) license.](/images/rivertail/benjen-beaverdere.jpg 'Benjen Beaverdere')
</div>

View File

@ -9,7 +9,7 @@ short_code: nrbb1
<div class="imgWrapper">
![Brae Badgerton, created with [DALL-E](https://labs.openai.com/) and released under a [CC0](/licenses/cc0) license.](/images/rivertail/brae-badgerton.jpg 'Brae Badgerton')
![Brae Badgerton, created with [DALL-E](https://labs.openai.com/) and released under a [CC0](/licenses/cc0/) license.](/images/rivertail/brae-badgerton.jpg 'Brae Badgerton')
</div>
@ -57,4 +57,4 @@ The badger wanders, a free spirit's guide,<br />
And in its wake, a trail of words and wonder,<br />
A testament to the wild, where poets dance and ponder.<br />
_Created with [ChatGPT](https://chat.openai.com/) and released under a [CC0](/licenses/cc0) license._
_Created with [ChatGPT](https://chat.openai.com/) and released under a [CC0](/licenses/cc0/) license._

View File

@ -9,7 +9,7 @@ short_code: nrf1
<div class="imgWrapper">
![Frobyrt Frogimus, created with [DALL-E](https://labs.openai.com/) and released under a [CC0](/licenses/cc0) license.](/images/rivertail/frobyrt-frogimus.jpg 'Frobyrt Frogimus')
![Frobyrt Frogimus, created with [DALL-E](https://labs.openai.com/) and released under a [CC0](/licenses/cc0/) license.](/images/rivertail/frobyrt-frogimus.jpg 'Frobyrt Frogimus')
</div>
@ -159,4 +159,4 @@ in<br />
silent<br />
reverie<br />
_Created with [ChatGPT](https://chat.openai.com/) and released under a [CC0](/licenses/cc0) license._
_Created with [ChatGPT](https://chat.openai.com/) and released under a [CC0](/licenses/cc0/) license._

View File

@ -9,7 +9,7 @@ short_code: nr01
<div class="imgWrapper">
![Omyt Ottermore, created with [DALL-E](https://labs.openai.com/) and released under a [CC0](/licenses/cc0) license.](/images/rivertail/omyt-ottermore.jpg 'Omyt Ottermore')
![Omyt Ottermore, created with [DALL-E](https://labs.openai.com/) and released under a [CC0](/licenses/cc0/) license.](/images/rivertail/omyt-ottermore.jpg 'Omyt Ottermore')
</div>
@ -60,4 +60,4 @@ reciting Ginsburgian verses of liberation and love,<br />
reclaiming your place as poets of the wild,<br />
in the enchanted forest's eternal symphony.<br />
_Created with [ChatGPT](https://chat.openai.com/) and released under a [CC0](/licenses/cc0) license._
_Created with [ChatGPT](https://chat.openai.com/) and released under a [CC0](/licenses/cc0/) license._

View File

@ -9,7 +9,7 @@ short_code: nrs1
<div class="imgWrapper">
![Syndee Slothig, created with [DALL-E](https://labs.openai.com/) and released under a [CC0](/licenses/cc0) license.](/images/rivertail/syndee-slothig.jpg 'Syndee Slothig')
![Syndee Slothig, created with [DALL-E](https://labs.openai.com/) and released under a [CC0](/licenses/cc0/) license.](/images/rivertail/syndee-slothig.jpg 'Syndee Slothig')
</div>
@ -62,4 +62,4 @@ Listen closely, let the poetry reign.<br />
In the heart of nature's magical chorus,<br />
Discover the beat of the enchanted forest's poets.<br />
_Created with [ChatGPT](https://chat.openai.com/) and released under a [CC0](/licenses/cc0) license._
_Created with [ChatGPT](https://chat.openai.com/) and released under a [CC0](/licenses/cc0/) license._

View File

@ -9,7 +9,7 @@ short_code: nrt1
<div class="imgWrapper">
![Talla Toadington, created with [DALL-E](https://labs.openai.com/) and released under a [CC0](/licenses/cc0) license.](/images/rivertail/talla-toadington.jpg 'Talla Toadington')
![Talla Toadington, created with [DALL-E](https://labs.openai.com/) and released under a [CC0](/licenses/cc0/) license.](/images/rivertail/talla-toadington.jpg 'Talla Toadington')
</div>
@ -67,4 +67,4 @@ To honor and cherish this watery caress,<br />
May the lost swamp find solace and peace,<br />
As its story echoes, refusing to cease.<br />
_Created with [ChatGPT](https://chat.openai.com/) and released under a [CC0](/licenses/cc0) license._
_Created with [ChatGPT](https://chat.openai.com/) and released under a [CC0](/licenses/cc0/) license._

View File

@ -144,24 +144,24 @@ Roll 1d20 on the Backlash Table to see what effect occurs.
| 1dXX | Effect |
| :--: | :------------------------------------------------------------------------------------------: |
| 1 | Fall unconscious |
| 2 | Take 1d8 damage |
| 3 | All creatures within 30' take 1d6 damage |
| 4 | All creatures within 20' take 1d6 damage |
| 5 | All creatures within 10' take 1d6 damage |
| 6 | **Save vs Spells** or flee for 1d4 minutes`` |
| 7 | Migraine, can't attack, move, or cast next round |
| 8 | Lost focus, can't cast next round |
| 9 | Distracted, go last in initiative next round |
| 10 | Temporary loss of motor skills, fall down (prone) |
| 2 | [Black Tentacles](/spells/black-tentacles.html) appear in 20' square area centered on caster |
| 3 | Take 1d8 damage |
| 4 | All creatures within 30' take 1d6 damage |
| 5 | All creatures within 20' take 1d6 damage |
| 6 | All creatures within 10' take 1d6 damage |
| 7 | Cursed, -1 to any attempt to cast for the rest of the day |
| 8 | **Save vs Spells** or flee for 1d4 minutes |
| 9 | Migraine, can't attack, move, or cast for 1d4 rounds |
| 10 | Panicked, can't cast for 1d4 rounds |
| 11 | Spell casts but target changes to a random target within range |
| 12 | Spell casts but effect rebounds onto caster instead[^1] |
| 13 | Next attempt to cast today gets additional -2 |
| 14 | See hallucinations (illusory monsters, horrifying visions, etc) |
| 15 | Lose ability to speak for 1d6-1 turns |
| 16 | ... |
| 17 | ... |
| 18 | ... |
| 19 | [Black Tentacles](/spells/black-tentacles.html) appear in 20' square area centered on caster |
| 13 | Discombobulated, can't cast spells for 1d4 hours |
| 14 | See hallucinations (illusory monsters, horrifying visions, etc) for 1d4 rounds |
| 15 | Dumbfounded, lose ability to speak coherently for 1d4 hours |
| 16 | Distressed, next attempt to cast today gets additional -2 |
| 17 | Befuddled, lose ability to speak coherently for 1d4 turns |
| 18 | Distracted, go last in initiative next round |
| 19 | Temporary loss of motor skills, fall down (prone) |
| 20 | No additional effect |
</div>